Skip to content

Instantly share code, notes, and snippets.

@blurbdust
blurbdust / covert_tcp.c
Created April 3, 2019 17:57
CPRE.331.covert_tcp.c
/* Covert_TCP 1.0 - Covert channel file transfer for Linux
* Written by Craig H. Rowland (crowland@psionic.com)
* Copyright 1996 Craig H. Rowland (11-15-96)
* NOT FOR COMMERCIAL USE WITHOUT PERMISSION.
*
*
* This program manipulates the TCP/IP header to transfer a file one byte
* at a time to a destination host. This progam can act as a server and a client
* and can be used to conceal transmission of data inside the IP header.
* This is useful for bypassing firewalls from the inside, and for
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
804341497441255424
3240985277
491532627
4556567547
4815201574
55217069
1027567260012097537
256491073
17173775
33861425
@blurbdust
blurbdust / PKGBUILD
Created April 26, 2019 00:30
Apache Spark PKGBUILD modified from current AUR
# Maintainer: François Garillot ("huitseeker") <francois [at] garillot.net>
# Contributor: Christian Krause ("wookietreiber") <kizkizzbangbang@gmail.com>
pkgname=apache-spark
pkgver=2.4.2
pkgrel=1
pkgdesc="fast and general engine for large-scale data processing"
arch=('any')
url="http://spark.apache.org"
license=('APACHE')
@blurbdust
blurbdust / PKGBUILD
Created April 26, 2019 00:37
Apache Flink PKGBUILD modified from current AUR
# Maintainer: Tao Meng ("mtunique") <oatgnem [at] gmail.com>
pkgname=apache-flink
pkgver=1.8.0
pkgrel=2
pkgdesc="Apache Flink is an open source platform for distributed stream and batch data processing"
arch=("i686" "x86_64")
url="http://flink.apache.org"
license=("APACHE")
depends=('java-environment>=7' 'openssh')
@blurbdust
blurbdust / modify_routes.py
Created September 12, 2019 17:57
minimum of 15 charcters from kwp
#!/env/user/python3
import sys
def main(infile, outfile, minlength):
#print(minlength)
minlength = int(minlength)
with open(outfile, "w") as out:
with open(infile, "r") as in_:
for line in in_:
line = line.replace("\n", "").replace("\r", "").replace("\t", "").replace(" ", "")
@blurbdust
blurbdust / common.fork.txt
Created October 15, 2019 19:30
Fork of dirb default wordlist to include aspnet stuff
1_0_2204_21
1_0_2914_0
1_0_3705_0
1_0_3705_209
1_0_3705_288
1_0_3705_6018
1_1_4322_510
1_1_4322_573
1_1_4322_2032
1_1_4322_2300
@blurbdust
blurbdust / ownerpassword.patch
Created January 29, 2020 21:31
OpenCL/m10500-pure.cl updated for 2020 from https://hashcat.net/forum/thread-6233.html
diff --git a/OpenCL/m10500-pure.cl b/OpenCL/m10500-pure.cl
index 51ee7312..687d7302 100644
--- a/OpenCL/m10500-pure.cl
+++ b/OpenCL/m10500-pure.cl
@@ -253,25 +253,9 @@ KERNEL_FQ void m10500_init (KERN_ATTR_TMPS_ESALT (pdf14_tmp_t, pdf_t))
u32 rc4data[2];
- rc4data[0] = esalt_bufs[digests_offset].rc4data[0];
- rc4data[1] = esalt_bufs[digests_offset].rc4data[1];
@blurbdust
blurbdust / setup.sh
Last active May 5, 2020 20:29
Copy of mail-in-a-box setup script but modified to use my fork
#!/bin/bash
#########################################################
# This script is intended to be run like this:
#
# curl https://mailinabox.email/setup.sh | sudo bash
#
#########################################################
if [ -z "$TAG" ]; then
# If a version to install isn't explicitly given as an environment
@blurbdust
blurbdust / config.json
Created May 28, 2020 16:17
Sample gophish config for use with mail-in-a-box
{
"admin_server": {
"listen_url": "0.0.0.0:3333",
"use_tls": true,
"cert_path": "/home/user-data/ssl/ssl_certificate.pem",
"key_path": "/home/user-data/ssl/ssl_private_key.pem"
},
"phish_server": {
"listen_url": "127.0.0.1:6969",
"use_tls": false,
<script type="text/javascript" language="javascript">
function acitve() {
var oShell = new ActiveXObject("wscript.shell");
oShell.Run("cmd.exe & pause");
}
function wscript() {
var shell = WScript.CreateObject("WScript.Shell");
shell.Run("cmd.exe & pause");
}