Jump to content

Search the Community

Showing results for tags 'bot'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Talk
    • Everything Else
    • Gaming
    • Questions
    • Business and Enterprise IT
    • Security
    • Hacks & Mods
    • Applications & Coding
    • Trading Post
  • Hak5 Gear
    • Hak5 Cloud C²
    • New USB Rubber Ducky
    • WiFi Pineapple
    • Bash Bunny
    • Key Croc
    • Packet Squirrel
    • Shark Jack
    • Signal Owl
    • LAN Turtle
    • Screen Crab
    • Plunder Bug
    • WiFi Coconut
  • O.MG (Mischief Gadgets)
    • O.MG Cable
    • O.MG DemonSeed EDU
  • Legacy Devices
    • Classic USB Rubber Ducky
    • WiFi Pineapple TETRA
    • WiFi Pineapple NANO
    • WiFi Pineapple Mark V
    • WiFi Pineapple Mark IV
    • Pineapple Modules
    • WiFi Pineapples Mark I, II, III
  • Hak5 Shows
  • Community
    • Forums and Wiki
    • #Hak5
  • Projects
    • SDR - Software Defined Radio
    • Community Projects
    • Interceptor
    • USB Hacks
    • USB Multipass
    • Pandora Timeshifting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 6 results

  1. Hi, I've been crunching away at this python3 script(s) for the past month and I would like some input on how to make it better. I based this bot off of Paul Mutton's work from the book “IRC Hacks.” Threading, having less hard coded variables, self healing, and making this code less dyslexic is definitely on the to do list! Let me know what you think :3 https://github.com/notpike/PikeBot
  2. I'm not sure if i'm asking this in the correct forum/section but i tried to start a retweeting bot on twitter for a community, The basic instruction are to copy and paste the file ( here -> https://github.com/Narno/phptwitterbot ) into the server, Or hosting service and change the login information or in this case, The configuration file , with the info and account login and password. I tried with this one -> https://github.com/Narno/phptwitterbot But it's not working. Have i done it incorrectly ? Or did i miss a step?
  3. Tested oN Linux Mint WIth Pyhton Version 2.6.6 This Bot Coded by jimyromantic devilz for PTC and I Recode for visit web #!/usr/bin/python # This code is just for educational only ;) # coder by jimmyromanticdevil # code for tutorial Python [ Membuat Bot Auto Clicker ] import urllib2 import urllib import sys import time import random import re import os proxylisttext = "proxylist.txt" useragent = ['Mozilla/4.0 (compatible; MSIE 5.0; SunOS 5.10 sun4u; X11)', 'Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.2pre) Gecko/20100207 Ubuntu/9.04 (jaunty) Namoroka/3.6.2pre', 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Avant Browser;', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)', 'Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 5.1)', 'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.6)', 'Microsoft Internet Explorer/4.0b1 (Windows 95)', 'Opera/8.00 (Windows NT 5.1; U; en)', 'amaya/9.51 libwww/5.4.0', 'Mozilla/4.0 (compatible; MSIE 5.0; AOL 4.0; Windows 95; c_athome)', 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)', 'Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.5 (like Gecko) (Kubuntu)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; ZoomSpider.net bot; .NET CLR 1.1.4322)', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; QihooBot 1.0 qihoobot@qihoo.net)', 'Mozilla/4.0 (compatible; MSIE 5.0; Windows ME) Opera 5.11 [en]'] referer = ['http://google.com','http://bing.com','http://facebook.com','http://twitter.com'] link_invation= 'http://jadicontoh.com' def Autoclicker(proxy1): try: proxy = proxy1.split(":") print 'Auto Click Using proxy :',proxy1 proxy_set = urllib2.ProxyHandler({"http" : "%s:%d" % (proxy[0], int(proxy[1]))}) opener = urllib2.build_opener(proxy_set, urllib2.HTTPHandler) opener.addheaders = [('User-agent', random.choice(useragent)), ('Referer', random.choice(referer))] urllib2.install_opener(opener) f = urllib2.urlopen(link_invation) if "jadicontoh.com" in f.read(): print "[*] Link Berhasil Di Kunjungi ..." else: print "[*] Link gagal di kunjungi !" print "[!] Proxy failed" except: print "[!] Proxy Error " pass def loadproxy(): try: get_file = open(proxylisttext, "r") proxylist = get_file.readlines() count = 0 proxy = [] while count < len(proxylist): proxy.append(proxylist[count].strip()) count += 1 for i in proxy: Autoclicker(i) except IOError: print "\n[-] Error: Check your proxylist path\n" sys.exit(1) def main(): print """ ################################# Simulation Bot Autoclicker coder : jimmyromanticdevil ################################# """ loadproxy() if __name__ == '__main__': main() Dont Forget Change text jadicontoh.com with your website and Build proxylist.txt for your proxy list , if you dont have proxy list you can copas from http://spys.ru/en/free-proxy-list and you can cleaning for copas with this code <? $lines = file('mentah.txt'); foreach($lines as $line_num => $line) { $data = explode(' ', $line); $data = $data[1].''; $cek = explode('HTTP', $data); $cek = $cek[0].''; echo "$cek"; echo "<br>"; } ?> Copas All COntent On Spy.ru and save text on file, rename file with name mentah.txt You Can Get Cleaning Proxy With OUT , One By One Copas
  4. Hey guys new to forum, but of course long time fan of the show. So I'm taking an undergrad in comp. sci. and have been wanting to start some projects. Anyways I wanted to create a shopping bot, that would automate my online shopping. So let's so for the site amazon.com I wanted a book I could somehow give my bot an input to the book and it would buy it for me having already stored my payment information. Obviously this isn't the greatest idea in terms of security, but hey just wanted to start a project that could give input to websites instead of messing around on my local machine. So do you guys have any idea on what I should start reading or maybe some resources I should start looking at? Any help would be awesome.
  5. Hi guys, I'm new so please don't bite ;) I noticed Darren's section about setting up ZNC so he has always on connectivity with IRC. I'm just wondering if it's possible to do this with a Raspberry Pi instead of using a VPS. Ideally I'd be running my 'pi' as the VPS which saves on costs for me. Does anyone know if this is possible and if so can you point me in the right direction :) Thanks guys! DarkByD3sign
  6. Hey all! So, Shenanigans as usual. Have any of you gotten the random Instant message" Hey! So I love you , but I want to give you a gift on cam. Here is my url.. " and so on and so forth, or some horsecrap similar to such? I'm wanting to try and "Reverse" hack them, and see who the... person is and give them a taste of their own. not sure if this is a topic-appropriate discussion, figured it was worth seeing if it was. Any ideas would be great.
×
×
  • Create New...