User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 149
  6. 150
  7. 151
  8. 152
  9. 153
  10. 154
  11. ...
  12. 169
  13. 170
  14. 171
  15. 172

Thanked Posts by Lanny

  1. Lanny Bird of Courage
    pppppppbbbt, im dtunk
    The following users say it would be alright if the author of this post didn't die in a fire!
  2. Lanny Bird of Courage
    mongolvoid is definitely my favorite new word
    The following users say it would be alright if the author of this post didn't die in a fire!
  3. Lanny Bird of Courage
    I see you and raise you one 80s throwback

    The following users say it would be alright if the author of this post didn't die in a fire!
  4. Lanny Bird of Courage
    Do you guys have have separate accounts? Not needing to work must have its upsides I imagine
    The following users say it would be alright if the author of this post didn't die in a fire!
  5. Lanny Bird of Courage
    I like the local update now and then. Having someone else is the bay area who actually goes outside is nice
    The following users say it would be alright if the author of this post didn't die in a fire!
  6. Lanny Bird of Courage
    Originally posted by Hash SIinging Slasher You call them alts, I call them friends.

    FUCK YOU
    The following users say it would be alright if the author of this post didn't die in a fire!
  7. Lanny Bird of Courage


    Guess not
    The following users say it would be alright if the author of this post didn't die in a fire!
  8. Lanny Bird of Courage
    Originally posted by greenplastic sometimes u gotta cry

    sometimes u gotta lol

    sometimes you gotta roll

    30 deep, gat them niggas, get them drugs

    fuck dem bitches smack their mugs
    The following users say it would be alright if the author of this post didn't die in a fire!
  9. Lanny Bird of Courage
    Ok, a serious music thread for once. Yall niggas heard this shit? FFO Earth

    The following users say it would be alright if the author of this post didn't die in a fire!
  10. Lanny Bird of Courage
    did you just seriously respond to "onion grenades"?

    Post last edited by Lanny at 2017-02-26T09:03:44.759396+00:00
    The following users say it would be alright if the author of this post didn't die in a fire!
  11. Lanny Bird of Courage


    Checkmate atheists
    The following users say it would be alright if the author of this post didn't die in a fire!
  12. Lanny Bird of Courage
    Originally posted by Captain Falcon Of course I lie about everything. That's what's great about the internet, I don't have to keep my word and I can say whatever I want. And it's gr8 for baiting you fags, lel.

    The following users say it would be alright if the author of this post didn't die in a fire!
  13. Lanny Bird of Courage
    there are forces at work that are greater than you or I
    The following users say it would be alright if the author of this post didn't die in a fire!
  14. Lanny Bird of Courage
    Originally posted by cerakote can we have a nsfw containment section please because i couldve got shitcanned for life if i wouldve opened trt anywhere other than siting on the shitter

    Very little of this site could be considered SFW and no way in hell am I going to try and enforce that. If you're in a situation where someone can read over your shoulder but not closely enough to read text, then I encourage you to disable image embedding and avatars.
    The following users say it would be alright if the author of this post didn't die in a fire!
  15. Lanny Bird of Courage
    https://www.youtube.com/watch?v=tjKHQeRSvjk
    The following users say it would be alright if the author of this post didn't die in a fire!
  16. Lanny Bird of Courage
    Originally posted by Bill Krozby k. I'm going to wear some black boy shorts and a tank top, see you at 10, bitch

    The lil homo didn't show up, afraid we were all going to learn what a fat ass bitch he is. So I got to talk about race relations for a few hours with bradley which was an interesting experience.

    Let it go down forever that Bill Krozby is a coward and a cunt.
    The following users say it would be alright if the author of this post didn't die in a fire!
  17. Lanny Bird of Courage
    Shutup RisiR.

    This is the code that worked for me:

    #!/usr/bin/env python2.7

    import re
    import argparse
    import sys

    from selenium import webdriver
    from selenium.webdriver.common.keys import Keys
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.support import expected_conditions as EC

    # Check for args, print logo and usage
    if not len(sys.argv[1:]):
    print """
    __ _ ___
    | \ ___ _ _| |_| __|__ _ _ __ _ ___
    | |) / _ \ '_| / / _/ _ \ '_/ _` / -_)
    |___/\___/_| |_\_\_|\___/_| \__, \___|
    |___/
    Welcome to DorkForge.

    To start using this script please provide one or more command
    line arguments and their corresponding value, where applicable.
    To display all options available use -h or --help.

    Example:
    DorkForge.py -h
    DorkForge.py -d inurl:show.php?id= --verbose\n"""

    sys.exit(0)


    # Handle command line arguments
    parser = argparse.ArgumentParser(description="Use this script and dorks to find vulnerable web applications.")
    group = parser.add_mutually_exclusive_group()
    group.add_argument("-d", "--dork", help="specify the dork you wish to use\n")
    group.add_argument("-l", "--list", help="specify path to list with dorks\n")
    parser.add_argument("-p", "--pages", default=1, type=int, help="specify amount of pages to check\n")
    parser.add_argument("-v", "--verbose", help="toggle verbosity\n")
    args = parser.parse_args()

    dork_list = []

    # If list, read item in
    if args.list:
    try:
    with open(args.list, "r") as ins:
    for line in ins:
    dork_list.append(line)
    except IOError:
    print "Could not read dork list"
    if args.verbose == True:
    print "An IO Error was raised with the following error message: "
    print "\n", e
    else:
    dork_list.append(args.dork)

    # Dork list processing/searching
    def search():
    driver = webdriver.Firefox()
    link_list = []
    for int in range(args.pages):
    driver.get("http://google.com")
    assert "Google" in driver.title
    for items in dork_list:
    elem = driver.find_element_by_name("q")
    elem.clear()
    elem.send_keys(items)
    elem.send_keys(Keys.RETURN)
    assert "No results found." not in driver.page_source

    WebDriverWait(driver, 10).until(
    EC.presence_of_element_located((By.CLASS_NAME, "r")))

    links = driver.find_elements_by_xpath("//h3//a[@href]")
    for elem in links:
    link_list.append(elem.get_attribute("href"))



    #try:
    # source = driver.page_source()
    # handler = open("page_source.html", "rw") # Needs unique names
    # handler.write(source)
    # handler.close()
    #except IOError as e:
    # print "Could not write page source"
    # if args.verbose == True:
    # print "An IO Error was raised with the following error message: "
    # print "\n", e

    driver.close()
    return link_list

    # Link list processing
    proc_one = search()

    for sorted_url in proc_one:
    final = []
    if "stackoverflow" or "github" not in sorted_url:
    final.append(sorted_url)

    print final


    A few changes, the biggest being the introduction of a wait. There's non-zero time between simulating pressing enter and results being available on the page, so we need to wait for search results to be available by polling. I changed the xpath to find links to get less garbage on the page that isn't results. Also this:

                for elem in links:
    link_list = []


    Empties link_list on every iteration so I brought it up to the top of search()
    The following users say it would be alright if the author of this post didn't die in a fire!
  18. Lanny Bird of Courage
    You're right, our fundamental class divisions and staggering income inequality is the major cause of violence. Cheap privately owned guns just make the situation slightly worse.
    The following users say it would be alright if the author of this post didn't die in a fire!
  19. Lanny Bird of Courage
    but please at least cover your nasty disease riddled dick
    The following users say it would be alright if the author of this post didn't die in a fire!
  20. Lanny Bird of Courage
    Originally posted by Totse 2001 PS Communism is Socialism with an evil dictator who lives like a hyper capitalist; shitting on the poor people.


    Fuck your communism!

    bro, read a book or something god damn
    The following users say it would be alright if the author of this post didn't die in a fire!
  1. 1
  2. 2
  3. 3
  4. ...
  5. 149
  6. 150
  7. 151
  8. 152
  9. 153
  10. 154
  11. ...
  12. 169
  13. 170
  14. 171
  15. 172
Jump to Top