操作系统:linux
软件环境:Python 2.7.3
用法:
代码如下:
$ ./MonSocket.py
# This is check the URI or Socket of the script #
Usage:
./MonSocket.py -d URL; This is Http protocol
./MonSocket.py -s socket IP or domain; This is Socket protocol
./MonSocket.py -p port; This is Socket port
./MonSocket.py -n ; Total number of requests
./MonSocket.py -c ; Number of concurrent requests
./MonSocket.py -t ; Timeout time(s),socket default is 1s,http default is 5s
For exampale: ./MonSocket.py -d www.weibo.com/index.php -n 200 -c 10 -t 2
For exampale: ./MonSocket.py -s 10.210.214.249 -p 80 -n 200 -c 50 -t 3
代码:
代码如下:
#!/usr/bin/env python
# encoding: utf-8
#
# Write by 飞奔的蜗牛-Bob
import os,sys
import getopt,re
import socket,threading,urllib2
def usage():
print '# This is check the URI or Socket of the script #'
print 'Usage:'
print " %s -d URL; This is Http protocol" %sys.argv[0]
print " %s -s socket IP or domain; This is Socket protocol" %sys.argv[0]
print " %s -p port; This is Socket port" %sys.argv[0]
print " %s -n ; Total number of requests" %sys.argv[0]
print " %s -c ; Number of concurrent requests" %sys.argv[0]
print " %s -t ; Timeout time(s),socket default is 1s,http default is 5s" %sys.argv[0]
print "For exampale: %s -d www.weibo.com/index.php -n 200 -c 10 -t 2" %sys.argv[0]
print "For exampale: %s -s 10.210.214.249 -p 80 -n 200 -c 50 -t 3" %sys.argv[0]
def Detect_url(url,sign):
if timeout:
time = int(timeout)
else:
time = 5
urllib2.socket.setdefaulttimeout(time)
request = urllib2.Request('http://%s' %(url))
try:
ret = urllib2.urlopen(request)
except urllib2.URLError,e:
if hasattr(e,"reason"):
port_timeout.append('1')
elif hasattr(e,"code"):
if re.findall('^3\d*','%s' %e.code):
port_normal.append('1')
if re.findall('^404\d*','%s' %e.code):
port_404.append('1')
if re.findall('^403\d*','%s' %e.code):
port_403.append('1')
if re.findall('^500\d*','%s' %e.code):
port_500.append('1')
if re.findall('^502\d*','%s' %e.code):
port_502.append('1')
if re.findall('^503\d*','%s' %e.code):
port_503.append('1')
else:
port_other.append('1')
else:
port_normal.append('1')
def Detect_socket(server,port):
sign = 0
if timeout:
time = int(timeout)
else:
time = 1
socket.setdefaulttimeout(time)
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
ret = s.connect((server, int(port)))
except socket.error, e:
if re.findall('^timed\ out*','%s' %e):
socket_timeout.append('1')
sign = 1
else:
print '%s' %e
sys.exit(2)
else:
socket_normal.append('1')
sign = 1
if sign == 0:
s.close()
def print_out():
if url_mod:
print 'URL:'
print 'timeout:[%s]' %len(port_timeout)
print 'normal:[%s]' %len(port_normal)
print '\033[;31mError_403:[%s]\tError_404:[%s]\033[0m' %(len(port_403),len(port_404))
print '\033[;31mError_500:[%s]\tError_502:[%s]\tError_503:[%s]\033[0m' %(len(port_500),len(port_502),len(port_503))
print '\033[;31mError_other:[%s]\033[0m' %len(port_other)
if sock_mod:
print 'Socket:'
print 'timeout:[%s]' %len(socket_timeout)
print 'normal:[%s]' %len(socket_normal)
def main():
if sock_mod:
dest_arg1 = sock_mod
dest_arg2 = dport
dest_function = Detect_socket
elif url_mod:
dest_arg1 = url_mod
dest_arg2 = ''
dest_function = Detect_url
else:
sys.exit()
total = int(dcount)
concurrent = int(dconcurrent)
n = 0
sign = 0
lastnu = total%concurrent
while 1:
threads = []
if n + concurrent > total:
nloops = range(n,total)
sign = 1
else:
nloops = range(n,n+concurrent)
for i in nloops:
t = threading.Thread(target=dest_function,args=(dest_arg1,dest_arg2))
threads.append(t)
if sign == 1:
th_nu = lastnu
else:
th_nu = concurrent
for i in range(th_nu):
threads[i].start()
for i in range(th_nu):
threads[i].join()
n = n + concurrent
if sign == 1:
break
print_out()
if __name__=='__main__':
try:
opts,args=getopt.getopt(sys.argv[1:],"hd:s:p:n:c:t:")
except getopt.GetoptError:
usage()
sys.exit(2)
port_timeout = []
port_normal = []
port_403= []
port_404 = []
port_500 = []
port_502 = []
port_503 = []
port_other = []
socket_normal = []
socket_timeout = []
dcount = 0
url_mod = ''
sock_mod = ''
dport = ''
dconcurrent = 0
timeout = 0
if opts:
for opt,arg in opts:
if opt == '-h':
usage()
sys.exit()
if opt == '-d':
url_mod = arg
if opt == '-s':
sock_mod = arg
if opt == '-p':
dport = arg
if opt == '-n':
dcount = arg
if opt == '-c':
dconcurrent = arg
if opt == '-t':
timeout = arg
if url_mod and dcount and dconcurrent:
main()
elif sock_mod and dport and dcount and dconcurrent:
main()
else:
usage()
else:
usage()
sys.exit()

Python은 데이터 과학, 웹 개발 및 자동화 작업에 적합한 반면 C는 시스템 프로그래밍, 게임 개발 및 임베디드 시스템에 적합합니다. Python은 단순성과 강력한 생태계로 유명하며 C는 고성능 및 기본 제어 기능으로 유명합니다.

2 시간 이내에 Python의 기본 프로그래밍 개념과 기술을 배울 수 있습니다. 1. 변수 및 데이터 유형을 배우기, 2. 마스터 제어 흐름 (조건부 명세서 및 루프), 3. 기능의 정의 및 사용을 이해하십시오. 4. 간단한 예제 및 코드 스 니펫을 통해 Python 프로그래밍을 신속하게 시작하십시오.

Python은 웹 개발, 데이터 과학, 기계 학습, 자동화 및 스크립팅 분야에서 널리 사용됩니다. 1) 웹 개발에서 Django 및 Flask 프레임 워크는 개발 프로세스를 단순화합니다. 2) 데이터 과학 및 기계 학습 분야에서 Numpy, Pandas, Scikit-Learn 및 Tensorflow 라이브러리는 강력한 지원을 제공합니다. 3) 자동화 및 스크립팅 측면에서 Python은 자동화 된 테스트 및 시스템 관리와 같은 작업에 적합합니다.

2 시간 이내에 파이썬의 기본 사항을 배울 수 있습니다. 1. 변수 및 데이터 유형을 배우십시오. 이를 통해 간단한 파이썬 프로그램 작성을 시작하는 데 도움이됩니다.

10 시간 이내에 컴퓨터 초보자 프로그래밍 기본 사항을 가르치는 방법은 무엇입니까? 컴퓨터 초보자에게 프로그래밍 지식을 가르치는 데 10 시간 밖에 걸리지 않는다면 무엇을 가르치기로 선택 하시겠습니까?

Fiddlerevery Where를 사용할 때 Man-in-the-Middle Reading에 Fiddlereverywhere를 사용할 때 감지되는 방법 ...

Python 3.6에 피클 파일로드 3.6 환경 보고서 오류 : modulenotfounderror : nomodulename ...

경치 좋은 스팟 댓글 분석에서 Jieba Word 세분화 문제를 해결하는 방법은 무엇입니까? 경치가 좋은 스팟 댓글 및 분석을 수행 할 때 종종 Jieba Word 세분화 도구를 사용하여 텍스트를 처리합니다 ...


핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

MinGW - Windows용 미니멀리스트 GNU
이 프로젝트는 osdn.net/projects/mingw로 마이그레이션되는 중입니다. 계속해서 그곳에서 우리를 팔로우할 수 있습니다. MinGW: GCC(GNU Compiler Collection)의 기본 Windows 포트로, 기본 Windows 애플리케이션을 구축하기 위한 무료 배포 가능 가져오기 라이브러리 및 헤더 파일로 C99 기능을 지원하는 MSVC 런타임에 대한 확장이 포함되어 있습니다. 모든 MinGW 소프트웨어는 64비트 Windows 플랫폼에서 실행될 수 있습니다.

SublimeText3 Linux 새 버전
SublimeText3 Linux 최신 버전

DVWA
DVWA(Damn Vulnerable Web App)는 매우 취약한 PHP/MySQL 웹 애플리케이션입니다. 주요 목표는 보안 전문가가 법적 환경에서 자신의 기술과 도구를 테스트하고, 웹 개발자가 웹 응용 프로그램 보안 프로세스를 더 잘 이해할 수 있도록 돕고, 교사/학생이 교실 환경 웹 응용 프로그램에서 가르치고 배울 수 있도록 돕는 것입니다. 보안. DVWA의 목표는 다양한 난이도의 간단하고 간단한 인터페이스를 통해 가장 일반적인 웹 취약점 중 일부를 연습하는 것입니다. 이 소프트웨어는

Atom Editor Mac 버전 다운로드
가장 인기 있는 오픈 소스 편집기

안전한 시험 브라우저
안전한 시험 브라우저는 온라인 시험을 안전하게 치르기 위한 보안 브라우저 환경입니다. 이 소프트웨어는 모든 컴퓨터를 안전한 워크스테이션으로 바꿔줍니다. 이는 모든 유틸리티에 대한 액세스를 제어하고 학생들이 승인되지 않은 리소스를 사용하는 것을 방지합니다.
