
أداة لإنشاء اتصالات SOCKS عبر وكلاء HTTP
اختراق الشبكة الداخلية عن طريق نشر وكلاء HTTP. Pivotnacci يتيح لك إنشاء خادم socks يتواصل مع وكلاء HTTP. تبدو البنية كما يلي:
هذه الأداة مستوحاة من reGeorg الرائعة. ومع ذلك، فهي تتضمن بعض التحسينات:
من حزم Python:
pip3 install pivotnacci
من المستودع:
git clone https://github.com/blackarrowsec/pivotnacci.git
cd pivotnacci/
pip3 install -r requirements.txt # لتجنب التثبيت على نظام التشغيل
python3 setup.py install # للتثبيت على نظام التشغيل
$ pivotnacci -h
usage: pivotnacci [-h] [-s addr] [-p port] [--verbose] [--ack-message message]
[--password password] [--user-agent user_agent]
[--header header] [--proxy [protocol://]host[:port]]
[--type type] [--polling-interval milliseconds]
[--request-tries number] [--retry-interval milliseconds]
url
Socks server for HTTP agents
positional arguments:
url The url of the agent
optional arguments:
-h, --help show this help message and exit
-s addr, --source addr
The default listening address (default: 127.0.0.1)
-p port, --port port The default listening port (default: 1080)
--verbose, -v
--ack-message message, -a message
Message returned by the agent web page (default:
Server Error 500 (Internal Error))
--password password Password to communicate with the agent (default: )
--user-agent user_agent, -A user_agent
The User-Agent header sent to the agent (default:
pivotnacci/0.0.1)
--header header, -H header
Send custom header. Specify in the form 'Name: Value'
(default: None)
--proxy [protocol://]host[:port], -x [protocol://]host[:port]
Set the HTTP proxy to use.(Environment variables
HTTP_PROXY and HTTPS_PROXY are also supported)
(default: None)
--type type, -t type To specify agent type in case is not automatically
detected. Options are ['php', 'jsp', 'aspx'] (default:
None)
--polling-interval milliseconds
Interval to poll the agents (for recv operations)
(default: 100)
--request-tries number
The number of retries for each request to an agent. To
use in case of balanced servers (default: 50)
--retry-interval milliseconds
Interval to retry a failure request (due a balanced
server) (default: 100)
استخدام وكيل مع كلمة مرور s3cr3t (يجب تعديل المتغير AGENT_PASSWORD أيضًا في جانب الوكيل):
pivotnacci https://domain.com/agent.php --password "s3cr3t"
استخدام ترويسة Host HTTP مخصصة ووكيل مستخدم مخصص CustomAgent:
pivotnacci https://domain.com/agent.jsp -H 'Host: vhost.domain.com' -A 'CustomAgent'
تعيين رسالة وكيل مختلفة 418 I'm a teapot (يجب تعديل المتغير ACK_MESSAGE أيضًا في جانب الوكيل):
pivotnacci https://domain.com/agent.aspx --ack-message "418 I'm a teapot"
تقليل معدل الكشف (مثل WAF) عن طريق ضبط فترة الاستقصاء على 2 ثانية:
pivotnacci https://domain.com/agent.php --polling-interval 2000
Eloy Pérez (@Zer1t0) [ www.blackarrow.net - www.tarlogic.com ]
جميع الكود المضمن في هذا المشروع مرخص بموجب شروط رخصة GNU AGPLv3.