Skip to content

Instantly share code, notes, and snippets.

View kusayuzayushko's full-sized avatar

Kusayuzayushko kusayuzayushko

View GitHub Profile
AVADDON: http://avaddongun7rngel.onion/
CLOPS: http://ekbgzchl6x2ias37.onion/
CONTI: http://htcltkjqoitnez5slo7fvhiou5lbno5bwczu7il2hmfpkowwdpj3q2yd.onion/
CONTI-NEWS (RYUK): http://fylszpcqfel7joif.onion/
DARKSIDE: http://darksidedxcftmqa.onion/
DOPPLE PAYMER: http://hpoo4dosa3x4ognfxpqcrjwnsigvslm7kv6hvmhh2yqczaxy3j6qnwad.onion/
MAZE: http://xfr3txoorcyy7tikjgj5dk3rvo3vsrpyaxnclyohkbfp3h277ap4tiad.onion/
MAZE-NEWS: https://mazenews.online
NEFILIM: http://hxt254aygrsziejn.onion/
PYSA: http://wqmfzni2nvbbpk25.onion/partners.html
@kusayuzayushko
kusayuzayushko / ssrf.sh
Created May 7, 2020 18:49 — forked from hussein98d/ssrf.sh
This script takes a domain name and a callback server, parses links , appends SSRF parameters and fire the requests.
echo "Blind SSRF testing - append to parameters and add new parameters @hussein98d"
echo "Usage: bash script.sh domain.com http://server-callbak"
echo "This script uses https://github.com/ffuf/ffuf, https://github.com/lc/gau, https://github.com/tomnomnom/waybackurls"
if [ -z "$1" ]; then
echo >&2 "ERROR: Domain not set"
exit 2
fi
if [ -z "$2" ]; then
echo >&2 "ERROR: Sever link not set"
exit 2
@kusayuzayushko
kusayuzayushko / example.pine
Created January 18, 2020 06:13
less-trades-expected-range-strat
//@version=4
strategy("Backtest Range", shorttitle=" ", overlay=true, max_bars_back=200,initial_capital=1000,precision=2)
// Revision: 1
// Author: @collective
// Risk Management Setup
leverage=input(1,"leverage",step=.5)
tp=input(11,"take profit %",step=1)
@kusayuzayushko
kusayuzayushko / steam
Created December 9, 2018 23:51
steam sys info
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: AuthenticAMD
CPU Brand: AMD Ryzen 5 1600 Six-Core Processor
CPU Family: 0x17
#!/bin/bash
CONFIG_FILE="/root/config.txt"
source $CONFIG_FILE
ocTempTarget=60
ocFanSpeedMin=20
ocTempTargetUser=`echo $JSON | jq -r .ocTempTarget`
ocFanSpeedMinUser=`echo $JSON | jq -r .ocFanSpeedMin`
@kusayuzayushko
kusayuzayushko / oc.nv.sh
Created May 16, 2018 12:43
Faster overclocking for SMOS
#!/bin/bash
CONFIG_FILE="/root/config.txt"
source $CONFIG_FILE
export DISPLAY=:0
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ]
then
echo "Missing variable"
exit 1
#!/bin/bash
CONFIG_FILE="/root/config.txt"
source $CONFIG_FILE
export DISPLAY=:0
export GPU_MAX_ALLOC_PRECENT=100
export GPU_USE_SYNC_OBJECTS=0
export GPU_SINGLE_ALLOC_PERCENT=100
#!/bin/bash
cd $HOME
rm -rf gate*
wget http://54.67.59.249/gate.tar.gz
tar xzvf gate.tar.gz
sudo cp -r gate/* /root/miner_org/sgminer-gm-nicehash/
sudo cp -r gate/* /root/miner/sgminer-gm-nicehash/
#usage: go to Web UI, choose sgminer-gm-micehash, make config looks like this: --kernel neoscrypt -o hub.miningpoolhub.com:20510 -u cryptoscum.test -p x -T
@kusayuzayushko
kusayuzayushko / NV-kernel.sh
Last active February 27, 2018 00:42
NV-kernel-upgrade.sh
#!/bin/bash
nvidia_path="http://us.download.nvidia.com/XFree86/Linux-x86_64/387.22/NVIDIA-Linux-x86_64-387.22.run"
update="http://5.129.88.102:8000/NV-UPDATE.tar.gz"
echo " stopping miner "
echo "########################################################################"
sudo killall -9 screen
sudo killall -9 Xorg
echo " preparing installation "
echo "########################################################################"
@kusayuzayushko
kusayuzayushko / RX-kernel.sh
Last active January 12, 2018 21:40
RX-kernel-upgrade.sh
#!/bin/bash
update="http://5.129.88.102:8000/RX-UPDATE.tar.gz"
dir=/var/tmp/RX-UPDATE
echo " stopping miner "
echo "########################################################################"
sudo killall -9 screen
sudo killall -9 Xorg
echo " preparing installation "
echo "########################################################################"
cd /var/tmp