amuck-landowner

Search results

  1. peterw

    NodeServ Presents NodeControl - In-House panel -PREVIEW-

    I like the clear design. Everything is visiable at the first click. Hope you did some security audits.
  2. peterw

    What do you use your servers for?

    I run a lot of applications. dns servers, irc servers, irc bouncers, mail servers, webservers with php, tryton, allura, linotp.
  3. peterw

    Install and run zeromq

    1. Installation: wget http://download.zeromq.org/zeromq-4.0.4.tar.gz tar -zxvf zeromq-4.0.4.tar.gz cd zeromq-4.0.4/ ./configure make && make install 2. Create server: "nano ~/server.php" <?php /* * Weather update server * Binds PUB socket to tcp://*:5556 * Publishes random weather updates *...
  4. peterw

    Distribute task or commands with bash to different workers

    I like the ampq protocol. I use zeromq because it is easier than rabbitmq.
  5. peterw

    Thread number 4000!

  6. peterw

    Create your own dynamic subdomain

    I run my own dns servers and I use a subdomain as a dynamic dns service. This tutorial shows how to create such a service. 1. Create DNS entries A record for dnsdynamic.domain.com (ip of dns server) NS record for dynamic.domain.com refering to dnsdynamic.domain.com 2. Install bind9: "apt-get...
  7. peterw

    No more free accounts from DynDNS

    Never used them because it is easy to update your subdomains.
  8. peterw

    Might wanna recompile or patch that OpenSSL, buddy (4/7/2014)

    All of my domains are vulnerable. Shit.
  9. peterw

    Large amount if failed SMTP access CSF

    I got about 100 fail2ban mails today. Every request from another ip. Is this a bot network searching for open relays/mail servers?
  10. peterw

    Bitcoin

    At least we are not forced to use them.
  11. peterw

    DigitalOcean Planning UK Location

    True. They open new tasks instead of finishing the old ones.
  12. peterw

    Captcha for your ssh login

    You failed to find the right solution. Take a screenshot and run a captcha solver or ocr tool. True!
  13. peterw

    Captcha for your ssh login

    Both. If you are trying to run the program quickly in succession and get different random numbers each time, initializing with the current time is the wrong approach. Never run srand in loop or in subsequent calls. What he needs is a random source not a timestamp. *captcha_list = malloc(len...
  14. peterw

    Captcha for your ssh login

    I don't like to install scripts from third party repositories and it is not a good idea if you use fonts and figlet on different terminals. You should stop coding and keep your ceo work. srand(time(NULL)); Meh code.
  15. peterw

    RockVPS offering Linux and Windows from only $4/month

    Raleigh does have lots of datacenters. Would like to know more about yours.
Top
amuck-landowner