Projects STRLCPY pentest-tools Commits 6ccabe97
🤬
  • ■ ■ ■ ■
    bbhost.sh
    skipped 13 lines
    14 14  fi
    15 15  #echo $output
    16 16   
    17  -parallel -j 10 "host " :::: $input | tee -a $output
     17 +parallel -j 20 "host " :::: $input | tee -a $output
    18 18  exit;
    19 19   
    20 20  for h in $(cat $input) ; do
    skipped 4 lines
  • github-sponsor.jpg
  • ■ ■ ■ ■ ■
    google-search.py
    skipped 85 lines
    86 86  else:
    87 87   urldecode = False
    88 88   
     89 +# print(fb_cookie)
    89 90   
    90 91  def doMultiSearch( term, numbers_only, urldecode, page ):
    91 92   zero_result = 0
    skipped 37 lines
  • ■ ■ ■ ■ ■ ■
    quickhits.py
    skipped 88 lines
    89 89   else:
    90 90   content_type = '-'
    91 91   
    92  - if len(url) > 1:
    93  - url = url.strip('_')
     92 + # if len(url) > 1:
     93 + # url = url.strip('_')
    94 94   
    95 95   match = title_regexp.search( r.text )
    96 96   title = match.group(1) if match else '-'
    skipped 22 lines
    119 119   # filename = t_urlparse.path.strip('/')
    120 120   filename = t_urlparse.path.strip('/') + '_' + t_urlparse.query
    121 121   filename = re.sub( '[^0-9a-zA-Z_\-\.]', '_', filename )
    122  - if len(filename) > 1:
    123  - filename = filename.strip('_')
     122 + # if len(filename) > 1:
     123 + # filename = filename.strip('_')
    124 124   
    125 125   d_output = d_output + '/' + t_urlparse.netloc
    126 126   f_output = d_output + '/' + filename
    skipped 250 lines
  • ■ ■ ■ ■
    smuggler.py
    skipped 501 lines
    502 502   sock.settimeout( _timeout )
    503 503   
    504 504   try:
    505  - sock.connect( (netloc, port) )
     505 + sock.connect( (netloc, int(port)) )
    506 506   except Exception as e:
    507 507   sys.stdout.write( "%s[-] send (connect) - error occurred: %s (%s)%s\n" % (fg('red'),e,self.url,attr(0)) )
    508 508   return False
    skipped 318 lines
Please wait...
Page is in error, reload to recover