This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = 'isox' | |
| # | |
| # https://radar.qrator.net | |
| # IP networks extractor utility | |
| # User AS number from https://radar.qrator.net/search?query=qiwi | |
| # As example 5750 | |
| # MacBook-Pro:Misc isox$ python3.5 radarQrator.py 57570 | |
| # | |
| # Output will be: | |
| # 91.232.230.0/23 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use feature 'say'; | |
| use Data::Dumper; | |
| use LWP::UserAgent; | |
| unless (@ARGV > 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'net/dns' | |
| class ScannerAXFR | |
| def initialize(target_list, threads = 5) | |
| return nil if target_list.nil? | |
| @target_list = target_list | |
| return nil if threads <= 0 | |
| @threads = threads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'httpclient' | |
| class ProxyList | |
| attr :url, :proxyList, :firstDownload | |
| def initialize(url) | |
| if url.nil? | |
| return nil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import argparse | |
| import re | |
| import queue | |
| import requests | |
| import threading | |
| def get_args(): |
NewerOlder