I hereby claim:
- I am dsnezhkov on github.
- I am dsnezhkov (https://keybase.io/dsnezhkov) on keybase.
- I have a public key ASBWUqrB2sjZcM2xOL2e2L7O5AGmCxqs208J4Nr5gy7VOAo
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html lang="en" xmlns="http://www.w3.org/1999/html"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Pusel Sacrifice Balance to $</title> | |
<style> | |
input[type=text] { | |
width: 100%; | |
padding: 12px 20px; | |
margin: 8px 0; |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>ACE in Action</title> | |
<script charset="utf-8" | |
crossorigin="anonymous" | |
integrity="sha512-GZ1RIgZaSc8rnco/8CXfRdCpDxRCphenIiZ2ztLy3XQfCbQUSCuk8IudvNHxkRA3oUg6q0qejgN/qqyG1duv5Q==" referrerpolicy="no-referrer" src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.4.12/ace.js" type="application/javascript"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/highlight.min.js"></script> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.0.1/styles/github.min.css" rel="stylesheet"> |
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
"time" | |
) | |
func main() { |
#!/Users/X/.rvm/rubies/ruby-2.2.5/bin/ruby | |
## Unauth: Get names and roles of company employees - overcoming LonkedIn limit | |
# 1. Google dork: "ibm" site:zoominfo.com | |
# 2 Link to company | |
# 3 Get the "ID" for a company in URL like https://www.zoominfo.com/pic/ibm-corporation/18579882 | |
Next to "Recently Updated profiles at this company" | |
# 4 Plug it in. | |
461 contacts available |
#!/usr/bin/env python | |
import pandas as pd | |
# format of data file | |
# id,email,password | |
top_pw=50 | |
top_email=50 | |
# Read CSV file, get author names and counts. | |
df = pd.read_csv("file.csv",index_col="id") |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
export DEBIAN_FRONTEND=noninteractive; | |
apt-get update; | |
apt-get -y upgrade; | |
apt-get install python-pip git -y | |
pip install --upgrade pip | |
pip install virtualenv | |
virtualenv -p python venv | |
. venv/bin/activate | |
pip install prompt_toolkit PyGithub bottle pygments pyaml delegator.py |
<package> | |
<job id="GetProcs"> | |
<script language="JScript"> | |
var loc = new ActiveXObject("WbemScripting.SWbemLocator"); | |
var svc = loc.ConnectServer(".", "root\\cimv2"); | |
coll = svc.ExecQuery("select * from Win32_Process"); | |
var items = new Enumerator(coll); | |
while (!items.atEnd()) | |
{ |
// cscript /B down.js | |
function saveFile(sSourceUrl, sDestFile ) { | |
var objXMLHTTP = new ActiveXObject("MSXML2.XMLHTTP"); | |
objXMLHTTP.onreadystatechange=function() { | |
if (objXMLHTTP.readyState === 4) { | |
var objADOStream = new ActiveXObject("ADODB.Stream"); | |
objADOStream.open(); | |
objADOStream.type = 1; // Binary | |
objADOStream.write(objXMLHTTP.ResponseBody); | |
objADOStream.position = 0; |
#!/bin/bash | |
echo "Screwing FCC in 3, 2, 1 ... " | |
MMDB="./mm.csv" | |
UA="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.112 Safari/534.30" | |
if [ ! -f $MMDB ] | |
then | |
echo "Getting you some sites ..." | |
curl -s http://downloads.majestic.com/majestic_million.csv -o mm.csv |