Skip to content

Instantly share code, notes, and snippets.

View SiloGit's full-sized avatar
👁️
OSINT Projects and Resources

Projects by Silo Collective SiloGit

👁️
OSINT Projects and Resources
  • SiloSec
  • Interwebs
View GitHub Profile
@SiloGit
SiloGit / Cit0day.sites.lst
Created February 21, 2023 16:51 — forked from gvolluz/Cit0day.sites.lst
Cit0day breach, list of sites in Cit0day [_special_for_xss.is].txt and Cit0day Prem [_special_for_xss.is].txt (only dns, sorted, without duplicates)
0059.co.kr
007.no
007airsoft.com
008.vista.kz
01186mb.ca
012.ca
01nii.ru
0286776498.com
0286780777.com
02asat.photoherald.com
@SiloGit
SiloGit / heartbleed.py
Created May 3, 2017 02:34 — forked from eelsivart/heartbleed.py
Heartbleed (CVE-2014-0160) Test & Exploit Python Script
#!/usr/bin/python
# Modified by Travis Lee
# Last Updated: 4/21/14
# Version 1.16
#
# -changed output to display text only instead of hexdump and made it easier to read
# -added option to specify number of times to connect to server (to get more data)
# -added option to send STARTTLS command for use with SMTP/POP/IMAP/FTP/etc...
# -added option to specify an input file of multiple hosts, line delimited, with or without a port specified (host:port)
# /usr/bin/env python
# -*- coding: utf-8 -*-
import requests
import os
import re
import argparse
import sys
from bs4 import BeautifulSoup
from threading import Thread, Event, Lock
@SiloGit
SiloGit / dorks.py
Created May 2, 2017 14:16 — forked from mvmthecreator/dorks.py
Search Bing and Google for Dorks
"""
***** Auto-finder by dorks tool with Google API & Bing API *****
@author: z0rtecx
@release date: dec-2014
@version: 1.0.12122014
@poc: good dork for find web pages whit SQLi vulnerability in ID parameter, e.g. "inurl:details.php?id="
@description: This tool is for save time for you. It is gathering dorks of a txt file, and search potential web pages with SQLi vulnerability. ONLY FOR MySQL errors.
@features:
#!/bin/bash
#sb-e Venom tool
#By :Alexcerus-HR
#Simple script cooded in bash scripting can give a help for crawling the files web and collecting email & #domains ....
#Available output types :
# doc = document files
# Pdf = files extracted from the Url targeted
# The harvester = tool can be found in our system for pentesting (search in the web & install it )..
# Golismero = the web tool knife
#
#!/usr/bin/python
#-*- coding: cp1254 -*-
# Auto SQL crawler - By : Alexcerus HR
###################
class bcolors: #
HEADER = '\033[95m' #
OKBLUE = '\033[94m' #
OKGREEN = '\033[92m' #
WARNING = '\033[93m' #
<?php
/*
Demo Video : https://www.youtube.com/watch?feature=player_detailpage&v=exO_7uXU2Ys
Script name : Whoislook BY Alexcerus-HR
Version : 1.0
*/
@set_time_limit(0);
"""
Name : Ip Checker
Created By : Lucifer
"""
import subprocess
print '\n\tLookup domain IP - By : Lucifer \n'
print """
_____ _ _
@SiloGit
SiloGit / Scanner.py
Created December 29, 2016 01:57 — forked from KyxRecon/Scanner.py
import requests
import argparse
import os
import time
def checkkey(kee):
try:
if len(kee) == 64:
return kee
else:
#!/usr/bin/python
#Wrtn By Kyxrec0n
#This module submits a user-defined URL to the VirusTotal scanning engine, and displays the results
import sys
import simplejson
import urllib
import urllib2
import re
from time import sleep