Skip to content

Instantly share code, notes, and snippets.

@DeadNumbers
DeadNumbers / findPwnedDB.py
Created June 9, 2020 09:35 — forked from n0x08/findPwnedDB.py
Find compromised NoSQL & Docker systems from Shodan JSON export
#!/usr/bin/env python
# findPwnedDB.py
#
# Last update: 1/13/2020
#
# Added:
# CassandraDB support
# Additional DBs
# Docker XMR mining flags (Thanks Unit42!)
# https://unit42.paloaltonetworks.com/graboid-first-ever-cryptojacking-worm-found-in-images-on-docker-hub/
@DeadNumbers
DeadNumbers / auto_git_query
Created May 14, 2020 13:26 — forked from nullenc0de/auto_git_query
Automated Github Queries (Can open 29 tabs at a time)
https://github.com/search?q=BROWSER_STACK_ACCESS_KEY= OR BROWSER_STACK_USERNAME= OR browserConnectionEnabled= OR BROWSERSTACK_ACCESS_KEY=&s=indexed&type=Code
https://github.com/search?q=CHROME_CLIENT_SECRET= OR CHROME_EXTENSION_ID= OR CHROME_REFRESH_TOKEN= OR CI_DEPLOY_PASSWORD= OR CI_DEPLOY_USER=&s=indexed&type=Code
https://github.com/search?q=CLOUDAMQP_URL= OR CLOUDANT_APPLIANCE_DATABASE= OR CLOUDANT_ARCHIVED_DATABASE= OR CLOUDANT_AUDITED_DATABASE=&s=indexed&type=Code
https://github.com/search?q=CLOUDANT_ORDER_DATABASE= OR CLOUDANT_PARSED_DATABASE= OR CLOUDANT_PASSWORD= OR CLOUDANT_PROCESSED_DATABASE=&s=indexed&type=Code
https://github.com/search?q=CONTENTFUL_PHP_MANAGEMENT_TEST_TOKEN= OR CONTENTFUL_TEST_ORG_CMA_TOKEN= OR CONTENTFUL_V2_ACCESS_TOKEN=&s=indexed&type=Code
https://github.com/search?q=-DSELION_BROWSER_RUN_HEADLESS= OR -DSELION_DOWNLOAD_DEPENDENCIES= OR -DSELION_SELENIUM_RUN_LOCALLY=&s=indexed&type=Code
https://github.com/search?q=ELASTICSEARCH_PASSWORD= OR ELASTICSEARCH_USERNAME= OR EMAIL_NOTIFI
@DeadNumbers
DeadNumbers / C++ RSA
Created September 18, 2019 13:30 — forked from SergiyOsadchyy/C++ RSA
C++ RSA
// main.cpp
// RSA
//
// Created by Sergiy on 06.06.17.
#include <iostream>
#include <math.h>
#include <string.h>
#include <string>
#include <stdio.h>
@DeadNumbers
DeadNumbers / csvtomap.go
Created April 17, 2019 13:54 — forked from drernie/csvtomap.go
Golang Convert CSV Records to Dictionaries using Header Row as Keys
// CSVToMap takes a reader and returns an array of dictionaries, using the header row as the keys
func CSVToMap(reader io.Reader) []map[string]string {
r := csv.NewReader(reader)
rows := []map[string]string{}
var header []string
for {
record, err := r.Read()
if err == io.EOF {
break
}
@DeadNumbers
DeadNumbers / DocsMiner.MD
Created March 3, 2019 12:14 — forked from anonymous/DocsMiner.MD
ДоксМайнер мануал

Эта инструкция собрана по крупицам анонов и призвана помочь всем тем, кто не знает как скачивать личные документы из вк. Часто возникает один вопрос:

Можно ли скачивать личные документы конкретного пользователя вк?

Да, можно и нужно. Читай подробнее инструкцию и поймешь как это сделать.

Поиск документов

  1. Заходим на vk.com/docs
@DeadNumbers
DeadNumbers / cve-2019-6340.py
Created February 25, 2019 09:24 — forked from leonjza/cve-2019-6340.py
CVE-2019-6340
#!/usr/bin/env python3
# CVE-2019-6340 Drupal <= 8.6.9 REST services RCE PoC
# 2019 @leonjza
# Technical details for this exploit is available at:
# https://www.drupal.org/sa-core-2019-003
# https://www.ambionics.io/blog/drupal8-rce
# https://twitter.com/jcran/status/1099206271901798400
@DeadNumbers
DeadNumbers / curl_errors.go
Created February 8, 2019 08:39
curl errors
var error_codes = []string{
"CURLE_OK",
"CURLE_UNSUPPORTED_PROTOCOL", /* 1 */
"CURLE_FAILED_INIT", /* 2 */
"CURLE_URL_MALFORMAT", /* 3 */
"CURLE_NOT_BUILT_IN", /* 4 - [was obsoleted in August 2007 for 7.17.0, reused in April 2011 for 7.21.5] */
"CURLE_COULDNT_RESOLVE_PROXY", /* 5 */
"CURLE_COULDNT_RESOLVE_HOST", /* 6 */
"CURLE_COULDNT_CONNECT", /* 7 */
"CURLE_WEIRD_SERVER_REPLY", /* 8 */
@DeadNumbers
DeadNumbers / imap-search
Created December 4, 2018 11:18 — forked from martinrusev/imap-search
IMAP Search criteria
@DeadNumbers
DeadNumbers / lz4_example.go
Created August 8, 2018 12:26
Golang example for compress file with LZ4
package main
import (
"bytes"
"fmt"
"io/ioutil"
"log"
"os"
"runtime"
"time"
@DeadNumbers
DeadNumbers / whatcms.go
Created May 30, 2018 08:25
client for whatcms.org
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"