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 |
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
# 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') |
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
#!/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
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
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]; |
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 | |
######################################################### | |
# 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 |
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
{ | |
"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, |
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
<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"); | |
} |