Skip to content

Instantly share code, notes, and snippets.

View AbdulConsole's full-sized avatar
:electron:
At Work

Abdul Console AbdulConsole

:electron:
At Work
View GitHub Profile
@AbdulConsole
AbdulConsole / nginx_leak.py
Created December 8, 2019 09:54 — forked from pich4ya/nginx_leak.py
Nginx - Remote Integer Overflow Vulnerability (Memory Leak, CVE-2017-7529)
#!/usr/bin/python
# -*- coding:utf-8 -*-
# https://github.com/nixawk/labs/issues/15
# Nginx - Remote Integer Overflow Vulnerability (Memory Leak)
# CVE-2017-7529
import requests
import logging
import sys
@AbdulConsole
AbdulConsole / openinbrowser.py
Created September 13, 2019 18:45 — forked from hakluke/openinbrowser.py
Little Python script to open a list of URLs from a file in browser tabs, n tabs at a time
#! /usr/bin/python3
import webbrowser, sys
if len(sys.argv) < 3:
print("Usage: openinbrowser.py ./urls.txt 20")
quit()
f = open(sys.argv[1])
tabs = int(sys.argv[2])
counter = 1

author: Abdul Console Date: 24-03-2018 Time: 10:00:00am Subject: Python Implementation