Skip to content

Instantly share code, notes, and snippets.

__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
@maximusfox
maximusfox / dos_PoC.pl
Last active May 12, 2020 21:47
Asus soho router DoS exploit PoC
#!/usr/bin/env perl
use strict;
use warnings;
use feature 'say';
use Data::Dumper;
use LWP::UserAgent;
unless (@ARGV > 0) {
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
@maximusfox
maximusfox / proxyParser.rb
Last active May 12, 2020 19:48
Simple proxy parser
#!/usr/bin/env ruby
require 'httpclient'
class ProxyList
attr :url, :proxyList, :firstDownload
def initialize(url)
if url.nil?
return nil
@maximusfox
maximusfox / start.py
Last active March 6, 2023 09:28
Multi-thread urls scanner
#!/usr/bin/env python3
import argparse
import re
import queue
import requests
import threading
def get_args():