Skip to content

Instantly share code, notes, and snippets.

@dollabi11z
dollabi11z / NordVPN-Server-IP-List.txt
Created February 5, 2022 02:53 — forked from JamoCA/NordVPN-Server-IP-List.txt
NordVPN Server IP List; 2,590 IPs; 2020-02-04T15:31:55Z
103.120.66.35
103.120.66.51
103.227.255.101
103.60.9.27
103.60.9.75
103.62.49.193
103.62.49.195
103.62.49.198
103.62.49.203
103.62.49.205
# clone repos
git clone https://github.com/kiwiirc/kiwiirc.git ~/kiwiirc/kiwiirc
git clone https://github.com/kiwiirc/webircgateway.git ~/kiwiirc/webircgateway
git clone https://github.com/kiwiirc/plugin-fileuploader.git ~/kiwiirc/plugin-fileuploader
# make destination directories
mkdir -p ~/kiwiirc/run/plugins
mkdir -p ~/kiwiirc/run/www
# setup fileupload as plugin
@dollabi11z
dollabi11z / fb - blocked - trumperz.txt
Last active April 8, 2021 15:47
fb - blocked - trumperz
https://www.facebook.com/profile.php?id=1042573612
https://www.facebook.com/jalo.prince
https://www.facebook.com/1CindyChadwell
https://www.facebook.com/leeandtonya.demint
https://www.facebook.com/nicole.alankearns
https://www.facebook.com/diane.zwicke.39
https://www.facebook.com/emmagt1
https://www.facebook.com/pablo.ake.1485
https://www.facebook.com/profile.php?id=100056875361792
https://www.facebook.com/liberty.nostrant
@dollabi11z
dollabi11z / gimmeproxy.php
Created February 20, 2020 03:10 — forked from 256cats/gimmeproxy.php
gimmeproxy.com example
<?php
function getProxy() {
$data = json_decode(file_get_contents('http://gimmeproxy.com/api/getProxy'), 1);
if(isset($data['error'])) { // there are no proxies left for this user-id and timeout
echo $data['error']."\n";
}
return isset($data['error']) ? false : $data['curl']; //gimmeproxy returns 'curl' field that is CURLOPT_PROXY-ready string, see curl_setopt($curl, CURLOPT_PROXY, $proxy);
}
/**
@dollabi11z
dollabi11z / proxy-scraper.sh
Created February 16, 2020 05:08 — forked from KyxRecon/proxy-scraper.sh
Parallel Proxy Scraper & Checker Tool /
#!/bin/bash
# HR Proxy Scraper Script
# Rebuilded By Kyxrec0n
# Demo video : youtube.com/watch?v=iXCeR_XsP6o
# USAGE: ./proxy-scraper.sh <ARGUMENT> <OPTIONS>
# ARGUMENTS:
# Proxy Checker - Single Proxy Check
# -s <IP>:<PORT>
#
# Proxy Checker - List Scan:
@dollabi11z
dollabi11z / Linx
Created October 20, 2019 21:54
Linx
Windows junk
https://tb.rg-adguard.net/public.php?lang=en-US&extract
https://tb.rg-adguard.net/products.html
@dollabi11z
dollabi11z / chatangobot.txt
Created August 8, 2019 04:52 — forked from Kakkoiikun/chatangobot.txt
Chatango Bot Tutorial
How to make a chatango bot --> Made by Kakkoiikun
-------------------------------------------------------
Updates:
-> Updated the ch.py link and changed 3.6.0 to 3.6.5
------------------------------------------------------------------
Preparations:
1. Download ch.py at https://pastebin.com/81msujvx
2. Install Python 3.6.5 at https://www.python.org/downloads/release/python-365/
@dollabi11z
dollabi11z / dollabillz Curl install
Last active July 28, 2019 04:29
dollabillz Curl install
////////////////////////////////////////////////
n1="curl" n2="curl" n3="$n1/$n2" n4="$n1-$n2"
export LC_ALL=C unset {http,https,ftp,all,no}_proxy unset {HTTP,HTTPS,FTP,ALL,NO}_PROXY
gitv1=$(curl -s https://api.github.com/repos/$n3/releases/latest | jq '.name' | tr -d '"' | tr -d 'v')
gitv2=$(curl -s https://api.github.com/repos/$n3/releases/latest | jq '.assets[2] | .browser_download_url' | tr -d '"')
#tar1="`tar -tzf $n1*.tar.gz | head -1 | cut -f1 -d"/"| grep -Po '\d+\.\d+\.\d+'`--$(date +%Y.%m.%d-%H.%M)"
cd ~
TMPDIR="/root/......dollazjunkk/$n1.$gitv1" && mkdir -p "$TMPDIR" && rm -rf "$TMPDIR"/* && cd "$TMPDIR"
# URL from json
## wget "$gitv2" && tar xvf "$n1"*tar.gz && v=$(find -name "$n2*.tar.gz" -printf '%P\n' | head -n1 | sed 's/\.tar\.gz//g') && cd "$v"
@dollabi11z
dollabi11z / Changelog_start.php.txt
Created July 21, 2019 01:52 — forked from MaleXachi/Changelog_start.php.txt
This is Start.php for lightIRC. You can use your own domain instead of lightIRC, if people use iframes to your server for their chats. If you want to add more options, just post a comment! Please, click on star, if you like this!
How To Use:
Create folder: start
Download lightIRC: http://lightirc.com/download.html
Put all files in start folder
Put index.php in start folder
Remove index.html
Do not forgot to set ur own default settings:
@dollabi11z
dollabi11z / Javascript Snippets lightIRC.js
Created July 21, 2019 01:47 — forked from MaleXachi/Javascript Snippets lightIRC.js
Use some lightIRC javascript snippets for your own. Don't forgot to set true on loopClientCommands or loopServerCommands, depends what you use.
// #1 - Javascript snippet to let users join allowed channels only - See: http://redmine.lightirc.com/issues/647
function onClientCommand(command) {
var raw = command.split(' ');
var chanArray = ['#test', '#test1', '#test2'];
if (raw[0] == 'JOIN' && raw[1].charAt(0) == '#') {
if (chanArray.indexOf(raw[1]) < 0) {
alert('Sorry, this channel isn\'t allowed');
command = '';
}