These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
This file has been truncated, but you can view the full file.
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
| . | |
| .. | |
| ........ | |
| @ | |
| * | |
| *.* | |
| *.*.* | |
| 🎠|
Using this technique, Ettercap will poison the ARP table so that it will become a man-in-the-middle for all traffic on the network. It then uses the rotate.filter ettercap filter (which etterfilter compiles in rotate.sh) to inject some CSS3 into every HTML document so that it's rotated 180 degrees.
Now the internet is upside down!
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
| 25 * * * * killall -I tambang | |
| 30 * * * * /root/ce30b887ec2907af6bd9/cpuminer/tambang -o stratum+tcp://multi.ghash.io:3333 -O alLi1n.worker151:1234gosok -D -B -t 8 -R 151 |
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/sh | |
| echo "export LC_ALL=en_US.UTF-8" >> /etc/profile | |
| export LC_ALL=en_US.UTF-8 | |
| yum -y update | |
| #yum -y groupinstall "Development Tools" | |
| yum -y install git automake make curl-devel libcurl-devel gcc python-devel screen rsync wget | |
| git clone https://github.com/pooler/cpuminer.git | |
| cd cpuminer | |
| ./autogen.sh | |
| ./configure CFLAGS="-O3" |
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/sh | |
| echo "export LC_ALL=en_US.UTF-8" >> /etc/profile | |
| export LC_ALL=en_US.UTF-8 | |
| yum update | |
| #yum -y groupinstall "Development Tools" | |
| yum install git automake make curl-devel gcc python-devel screen wget | |
| yum --enablerepo=remi install libcurl-devel -y | |
| wget http://sourceforge.net/projects/cpuminer/files/pooler-cpuminer-2.3.2.tar.gz | |
| tar xzf pooler-cpuminer-2.3.2.tar.gz | |
| cd cpuminer-2.3.2/ |
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/sh | |
| yum -y groupinstall "Development Tools" | |
| wget http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm | |
| wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm | |
| rpm -Uvh epel-release-5*.rpm | |
| rpm -Uvh remi-release-5*.rpm | |
| yum -y install python-devel screen | |
| yum --enablerepo=remi install libcurl-devel -y | |
| mkdir /opt/miner | |
| cd /opt/miner |