mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
As fcntl is only supported on Posix systems (no Windows) we need to check for the OS beforehand.
Added proper check for impacket library too.
This commit is contained in:
parent
d75578c81f
commit
2b2634e92c
|
@ -19,23 +19,41 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
import fcntl
|
|
||||||
import os
|
import os
|
||||||
import select
|
import select
|
||||||
import socket
|
import socket
|
||||||
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
try:
|
def checkImpacketLibs():
|
||||||
|
try:
|
||||||
from impacket import ImpactDecoder
|
from impacket import ImpactDecoder
|
||||||
from impacket import ImpactPacket
|
from impacket import ImpactPacket
|
||||||
except ImportError, _:
|
except ImportError:
|
||||||
pass
|
sys.stderr.write('You need to install Python Impacket library first\n')
|
||||||
|
sys.exit(255)
|
||||||
|
|
||||||
|
def setNonBlocking(fd):
|
||||||
|
"""
|
||||||
|
Make a file descriptor non-blocking
|
||||||
|
"""
|
||||||
|
|
||||||
|
import fcntl
|
||||||
|
|
||||||
|
flags = fcntl.fcntl(fd, fcntl.F_GETFL)
|
||||||
|
flags = flags | os.O_NONBLOCK
|
||||||
|
fcntl.fcntl(fd, fcntl.F_SETFL, flags)
|
||||||
|
|
||||||
def main(src, dst):
|
def main(src, dst):
|
||||||
|
if subprocess.mswindows:
|
||||||
|
sys.stderr.write('ERROR: icmpsh master can only be run on Posix systems\n')
|
||||||
|
sys.exit(255)
|
||||||
|
|
||||||
|
checkImpacketLibs()
|
||||||
|
|
||||||
# Make standard input a non-blocking file
|
# Make standard input a non-blocking file
|
||||||
fd = sys.stdin.fileno()
|
stdin_fd = sys.stdin.fileno()
|
||||||
fl = fcntl.fcntl(fd, fcntl.F_GETFL)
|
setNonBlocking(stdin_fd)
|
||||||
fcntl.fcntl(fd, fcntl.F_SETFL, fl | os.O_NONBLOCK)
|
|
||||||
|
|
||||||
# Open one socket for ICMP protocol
|
# Open one socket for ICMP protocol
|
||||||
# A special option is set on the socket so that IP headers are included
|
# A special option is set on the socket so that IP headers are included
|
||||||
|
@ -114,8 +132,12 @@ def main(src, dst):
|
||||||
sock.sendto(ip.get_packet(), (dst, 0))
|
sock.sendto(ip.get_packet(), (dst, 0))
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
if subprocess.mswindows:
|
||||||
|
print 'ERROR: this icmpsh master can only be run on Posix systems'
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
if len(sys.argv) < 3:
|
if len(sys.argv) < 3:
|
||||||
print 'missing mandatory options. Execute as root:'
|
print 'ERROR: missing mandatory options. Execute as root:'
|
||||||
print './icmpsh-m.py <source IP address> <destination IP address>'
|
print './icmpsh-m.py <source IP address> <destination IP address>'
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user