Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Setting it up:
- After you set up your server (VPS or Dedicated) you're gonna need to do some installing.
- Basic install perimeters:
- 1 - FIRST ALWAYS USE: yum -y update (This updates all modules to the latest)
- 2 - sudo yum -y install
- 3 - yum -y install
- The above lines are basically the start of installing new modules.
- then you need to install basic things like RawIP and thing of that nature.
- 1. yum -y install cpan
- 1a. Set cpan to say yes to everything you install (makes it faster):
- perl -MCPAN -e 'my $c = "CPAN::HandleConfig"; $c->load(doit => 1, autoconfig => 1); $c->edit(prerequisites_policy => "follow"); $c->edit(build_requires_install_policy => "yes"); $c->commit'
- then after its installed type cpan and hit enter
- then type:
- 2. cpan <hit enter> install CPAN (this is the new version of cpan and must be done before installing the below dependencies)
- 2a. cpan -fi YAML Net::RawIP Net::IP Net::DNS Net:Pcap Net::Pcap::Easy
- (Note: Alot of the above cpan installs are for scanning amp lists as well. These amp lists are used for more powerful attacks)
- hit y>Enter for anything that may ask. (This is mainly for the perl scripts like ddos.pl)
- After thats done you need to Ctrl-C out of it (usually hitting it twice brings u back to the root folder.)
- Then type:
- 3. yum install -y screen dstat gcc php-devel php-pear libssh2 libssh2-devel libpcap libpcap-devel httpd mod_ssl php php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml cpan
- 4. and followed by:
- 5. pecl install -f ssh2
- Hit enter at the autodetect line
- Followed by:
- 6. touch /etc/php.d/ssh2.ini
- 7. echo extension=ssh2.so > /etc/php.d/ssh2.ini
- and then restart httpd and check for SSH2:
- 8. /etc/init.d/httpd restart
- 9. php -m | grep ssh2
- it should reply with the result "ssh2"
- After thats done you need Apache/PHP if its not already installed (usually it is but just in case)
- 10. yum -y install httpd mod_ssl
- 11. /usr/sbin/apachectl start
- This will reply with a 127.0.0.1:80 for servername so you want to do this
- nano /etc/httpd/conf/httpd.conf
- then find
- #ServerName www.example.com:80
- and change it to
- Servername demo
- then do
- /usr/sbin/apachectl restart
- 12. set your iptables
- iptables -I INPUT -p tcp --dport 80 -j ACCEPT
- then save
- service iptables save
- and restart
- service iptables restart
- 13. starting apache and http when the server is rebooted
- /sbin/chkconfig httpd on
- 14. Installing PHP
- yum install php-mysql php-devel php-gd php-pecl-memcache php-pspell php-snmp php-xmlrpc php-xml
- then
- /usr/sbin/apachectl restart
- 15. Install gcc
- yum -y install gcc
- then install dstat
- yum -y install dstat
- 16. Now upload your scripts, compile them with gcc, scan a list or buy one and test it on something/someone.
- ****************IF ANYTHING COMES UP AS A:READY INSTALLED IGNORE IT AND SKIP TO THE NEXT STEP***************
- Regards,
- -Deadline
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement