как ломануть 1C 8.3 for Linux
X

Привет дорогой друг

Наш сайт существует и развиваетется за счет рекламы. Пожалуйста, отключите блокировку рекламы AdBlock или подобное, для нашего сайта. Спасибо!
Показано с 1 по 10 из 1273

Комбинированный просмотр

  1. #1
    Гость форума

    Регистрация
    06.11.2010
    Сообщений
    3
    Сказал(а) спасибо
    7
    Поблагодарили 0 раз(а) в 0 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Обновите пожалуйста ссылку пропатченного backbas.so для 8.3.21.1302, все ссылки не активны
    Последний раз редактировалось Blasterss; 06.06.2022 в 00:57.

  2. #2
    Пришел за помощью

    Регистрация
    17.03.2022
    Сообщений
    10
    Сказал(а) спасибо
    3
    Поблагодарили 2 раз(а) в 2 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Цитата Сообщение от Blasterss Посмотреть сообщение
    Обновите пожалуйста ссылку пропатченного backbas.so для 8.3.21.1302, все ссылки не активны
    Приветствую. Не сложно самому пропатчить. Работает на питоне3, проверил сам. https://forum.ruboard.ru/showthread....81%D0%B8/page2

  3. Пользователь сказал cпасибо:

    Blasterss (06.06.2022)

  4. #3
    Пришел за помощью

    Регистрация
    17.03.2022
    Сообщений
    10
    Сказал(а) спасибо
    3
    Поблагодарили 2 раз(а) в 2 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Цитата Сообщение от RenatKar Посмотреть сообщение
    Приветствую. Не сложно самому пропатчить. Работает на питоне3, проверил сам. https://forum.ruboard.ru/showthread....81%D0%B8/page2
    Если в ближайшее время установлю новую платформу и пропатчу- скину.

  5. Пользователь сказал cпасибо:

    Blasterss (06.06.2022)

  6. #4
    Гость форума

    Регистрация
    06.11.2010
    Сообщений
    3
    Сказал(а) спасибо
    7
    Поблагодарили 0 раз(а) в 0 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Спасибо за помощь

  7. #5
    Пришел за помощью

    Регистрация
    17.03.2022
    Сообщений
    10
    Сказал(а) спасибо
    3
    Поблагодарили 2 раз(а) в 2 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Цитата Сообщение от Blasterss Посмотреть сообщение
    Спасибо за помощь
    Платформа 8.3.21.1302 на 100 юзверей.

    https://drive.google.com/file/d/1wgb...ew?usp=sharing

  8. #6
    Гость форума

    Регистрация
    27.06.2017
    Сообщений
    9
    Сказал(а) спасибо
    2
    Поблагодарили 3 раз(а) в 2 сообщениях

    По умолчанию Debian 11 Проверка работы эмулятора Hasp + Web

    Debian 11 Проверка работы эмулятора Hasp + Web

    #!/usr/bin/env python

    import argparse, os, sys, socket, subprocess
    from http.server import HTTPServer, BaseHTTPRequestHandler

    lsusb = (os.popen("lsusb | grep Aladdin").read())
    lsusb = lsusb.replace('Bus','<br />Bus')

    hasplm = subprocess.Popen("systemctl status hasplm", shell=True, stdout=subprocess.PIPE).stdout.read()
    hasplm = hasplm.replace(b"\n",b"<br />")
    hasplm = hasplm.replace(b"\xe2\x97\x8f ",b"<br />")
    hasplm = hasplm.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    hasplm = hasplm.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    hasplm = hasplm.decode('utf-8')
    haspd = subprocess.Popen("systemctl status haspd", shell=True, stdout=subprocess.PIPE).stdout.read()
    haspd = haspd.replace(b"\n",b"<br />")
    haspd = haspd.replace(b"\xe2\x97\x8f ",b"<br />")
    haspd = haspd.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    haspd = haspd.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    haspd = haspd.decode('utf-8')
    usbhaspd = subprocess.Popen("systemctl status usbhaspd", shell=True, stdout=subprocess.PIPE).stdout.read()
    usbhaspd = usbhaspd.replace(b"\n",b"<br />")
    usbhaspd = usbhaspd.replace(b"\xe2\x97\x8f ",b"<br />")
    usbhaspd = usbhaspd.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    usbhaspd = usbhaspd.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    usbhaspd = usbhaspd.decode('utf-8')

    class S(BaseHTTPRequestHandler):
    def _set_headers(self):
    self.send_response(200)
    self.send_header("Content-type", "text/html")
    self.end_headers()

    def _html(self, message):
    """This just generates an HTML document that includes `message`
    in the body. Override, or re-write this do do more interesting stuff.
    """
    content = f"<html><body><h1>{message}</h1><p><b>lsusb | grep Aladdin</b>{lsusb}</p><p><b>systemctl status hasplm</b><br>{hasplm}</p><p><b>systemctl status haspd</b><br>{haspd}</p><p><b>systemctl status usbhaspd</b><br>{usbhaspd}</p></body></html>"
    return content.encode("utf8") # NOTE: must return a bytes object!

    def do_GET(self):
    self._set_headers()
    self.wfile.write(self._html("hi!"))

    def do_HEAD(self):
    self._set_headers()

    def do_POST(self):
    # Doesn't do anything with posted data
    self._set_headers()
    self.wfile.write(self._html("POST!"))


    def run(server_class=HTTPServer, handler_class=S, addr="localhost", port=8000):
    server_address = (addr, port)
    httpd = server_class(server_address, handler_class)

    print(f"Starting httpd server on {addr}:{port}")
    httpd.serve_forever()


    if __name__ == "__main__":

    parser = argparse.ArgumentParser(description="Run a simple HTTP server")
    parser.add_argument(
    "-l",
    "--listen",
    default="localhost",
    help="Specify the IP address on which the server listens",
    )
    parser.add_argument(
    "-p",
    "--port",
    type=int,
    default=8000,
    help="Specify the port on which the server listens",
    )
    args = parser.parse_args()
    run(addr=args.listen, port=args.port)

  9. #7
    Гость форума

    Регистрация
    27.06.2017
    Сообщений
    9
    Сказал(а) спасибо
    2
    Поблагодарили 3 раз(а) в 2 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Debian скрипт для мониторинга работы эмулятора + вывод информации в Web

    #!/usr/bin/env python

    import argparse, os, sys, socket, subprocess
    from http.server import HTTPServer, BaseHTTPRequestHandler

    lsusb = (os.popen("lsusb | grep Aladdin").read())
    lsusb = lsusb.replace('Bus','<br />Bus')

    hasplm = subprocess.Popen("systemctl status hasplm", shell=True, stdout=subprocess.PIPE).stdout.read()
    hasplm = hasplm.replace(b"\n",b"<br />")
    hasplm = hasplm.replace(b"\xe2\x97\x8f ",b"<br />")
    hasplm = hasplm.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    hasplm = hasplm.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    hasplm = hasplm.decode('utf-8')
    haspd = subprocess.Popen("systemctl status haspd", shell=True, stdout=subprocess.PIPE).stdout.read()
    haspd = haspd.replace(b"\n",b"<br />")
    haspd = haspd.replace(b"\xe2\x97\x8f ",b"<br />")
    haspd = haspd.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    haspd = haspd.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    haspd = haspd.decode('utf-8')
    usbhaspd = subprocess.Popen("systemctl status usbhaspd", shell=True, stdout=subprocess.PIPE).stdout.read()
    usbhaspd = usbhaspd.replace(b"\n",b"<br />")
    usbhaspd = usbhaspd.replace(b"\xe2\x97\x8f ",b"<br />")
    usbhaspd = usbhaspd.replace(b"\xe2\x94\x94\xe2\x94\x80",b"")
    usbhaspd = usbhaspd.replace(b"\xe2\x94\x9c\xe2\x94\x80",b"")
    usbhaspd = usbhaspd.decode('utf-8')

    class S(BaseHTTPRequestHandler):
    def _set_headers(self):
    self.send_response(200)
    self.send_header("Content-type", "text/html")
    self.end_headers()

    def _html(self, message):
    """This just generates an HTML document that includes `message`
    in the body. Override, or re-write this do do more interesting stuff.
    """
    content = f"<html><body><h1>{message}</h1><p><b>lsusb | grep Aladdin</b>{lsusb}</p><p><b>systemctl status hasplm</b><br>{hasplm}</p><p><b>systemctl status haspd</b><br>{haspd}</p><p><b>systemctl status usbhaspd</b><br>{usbhaspd}</p></body></html>"
    return content.encode("utf8") # NOTE: must return a bytes object!

    def do_GET(self):
    self._set_headers()
    self.wfile.write(self._html("hi!"))

    def do_HEAD(self):
    self._set_headers()

    def do_POST(self):
    # Doesn't do anything with posted data
    self._set_headers()
    self.wfile.write(self._html("POST!"))


    def run(server_class=HTTPServer, handler_class=S, addr="localhost", port=8000):
    server_address = (addr, port)
    httpd = server_class(server_address, handler_class)

    print(f"Starting httpd server on {addr}:{port}")
    httpd.serve_forever()


    if __name__ == "__main__":

    parser = argparse.ArgumentParser(description="Run a simple HTTP server")
    parser.add_argument(
    "-l",
    "--listen",
    default="localhost",
    help="Specify the IP address on which the server listens",
    )
    parser.add_argument(
    "-p",
    "--port",
    type=int,
    default=8000,
    help="Specify the port on which the server listens",
    )
    args = parser.parse_args()
    run(addr=args.listen, port=args.port)

  10. #8
    Гость форума

    Регистрация
    30.11.2011
    Сообщений
    9
    Сказал(а) спасибо
    3
    Поблагодарили 0 раз(а) в 0 сообщениях

    По умолчанию Re: как ломануть 1C 8.3 for Linux

    Цитата Сообщение от RenatKar Посмотреть сообщение
    Платформа 8.3.21.1302 на 100 юзверей.

    https://drive.google.com/file/d/1wgb...ew?usp=sharing
    Платформа 64 или 32?

Социальные закладки

Социальные закладки

Ваши права

  • Вы не можете создавать новые темы
  • Вы не можете отвечать в темах
  • Вы не можете прикреплять вложения
  • Вы не можете редактировать свои сообщения
  •