This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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(" ", "") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: François Garillot ("huitseeker") <francois [at] garillot.net> | |
# Contributor: Christian Krause ("wookietreiber") <[email protected]> | |
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') |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
804341497441255424 | |
3240985277 | |
491532627 | |
4556567547 | |
4815201574 | |
55217069 | |
1027567260012097537 | |
256491073 | |
17173775 | |
33861425 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Covert_TCP 1.0 - Covert channel file transfer for Linux | |
* Written by Craig H. Rowland ([email protected]) | |
* 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt-get update | |
apt-get install -y bc build-essential git cmake dkms linux-image-4.19.0-kali4-amd64 linux-headers-4.19.0-kali4-amd64 | |
git clone https://github.com/blurbdust/rtl8812au | |
cd rtl8812au | |
./dkms-remove.sh | |
./dkms-install.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir $1 | |
cd $1 | |
amass -d $1 | tee amass.log | |
subfinder -d $1 -o subfinder.log -b -w /root/tools/all.txt/all.lower.txt -recursive | |
#subfinder -d $1 -o subfinder.log | |
python /root/tools/Sublist3r/sublist3r.py -d $1 -o sublister.log | |
cat *.log >> subs.txt | |
sort subs.txt | uniq > subdomains.txt | |
subjack -w subdomains.txt -t 10 -timeout 30 -o results.txt -ssl -a | |
tko-subs -domains=subdomains.txt -data=/root/go_work/src/github.com/anshumanbh/tko-subs/providers-data.csv | tee tko-subs.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from secretsharing import PlaintextToHexSecretSharer | |
def recover_flag(msgs): | |
print(PlaintextToHexSecretSharer.recover_secret(msgs)) | |
def print_results(): | |
msgs = [] | |
recover_flag(msgs[::4]) | |
recover_flag(msgs[1::4]) | |
recover_flag(msgs[2::4]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.write("gist blurbdust"); |