Skip to content

Instantly share code, notes, and snippets.

cd
mkdir work
cd work
git clone https://github.com/zmap/zmap.git
apt-get install build-essential cmake libgmp3-dev gengetopt libpcap-dev flex byacc libjson-c-dev pkg-config libunistring-dev
cd zmap
cmake .
make -j4
make install
cd
@welllima88
welllima88 / gtp.py
Created October 7, 2016 21:51 — forked from ffr4nz/gtp.py
Scapy GTP Layer
#! /usr/bin/env python
## Copyright (C) 2014 Guillaume Valadon <guillaume.valadon@ssi.gouv.fr>
## 2014 Alexis Sultan <alexis.sultan@sfr.com>
## 2012 ffranz <ffranz@iniqua.com>
##
## This program is published under a GPLv2 license
# scapy.contrib.description = GTP
# scapy.contrib.status = loads
<Response>
<Dial callerId="119992222333">
<Number>119992222333</Number>
</Dial>
</Response>
<Response>
<Dial callerId="08008783167">
<User>sip:08008783167@104.196.54.24</User>
</Dial>
</Response>
@welllima88
welllima88 / fake_stripe_server.rb
Created April 8, 2016 16:52 — forked from wojtha/fake_stripe_server.rb
Fake Stripe mock backend server for generating tokens for stripe.js
#!/usr/bin/env ruby
require 'sinatra/base'
require 'json'
require 'stripe_mock'
# Mount fake Sinatra Stripe Server to Capybara
#
# Example:
#
# feature 'Subscribe' do