Bug/Exploit Forum Monitoring Script menu

User Tag List

Results 1 to 3 of 3
  1. #1
    Reznok's Avatar Member
    Reputation
    10
    Join Date
    Nov 2021
    Posts
    1
    Thanks G/R
    0/7
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Bug/Exploit Forum Monitoring Script

    As most people know by now, the official Bug/Exploit forum is a treasure trove of information. Unless I completely missed something, the official Forums don't let you sort by topic creation date. To deal with this, I made a super basic python script to notify me any time a new topic was added to the Bug/Exploit forum so that I could find anything major a lot faster. It's nothing special but it may save others the time of writing their own

    Code:
    import requests
    import datetime
    import time
    import json
    
    loaded_ids = []
    start_time = datetime.datetime.utcnow()
    print(f"Start Time: {start_time}")
    
    LATEST_BUG_URL = "https://forums.newworld.com/latest.json?ascending=false"
    
    while True:
        try:
            data = requests.get(LATEST_BUG_URL).json()
            topic_list = data["topic_list"]
            for topic in topic_list['topics']:
                post_time = datetime.datetime.strptime(topic["created_at"].split(".")[0], "%Y-%m-%dT%H:%M:%S")
                if post_time > start_time and topic['id'] not in loaded_ids:
                    print(f"{post_time} | {topic['title']} | https://forums.newworld.com/t/{topic['slug']}/{topic['id']}")
                    loaded_ids.append(topic['id'])
    
        except KeyboardInterrupt:
            exit()
        except Exception as e:
            print(f"Error: {e}")
    
        time.sleep(10)
    Instructions to Run:
    1. Install python
    2. Save code as whatever (nw_monitor.py)
    3. Install the requests library (pip install requests)
    4. Run script: python nw_monitor.py

    It'll check for updates every 10 seconds.

    Screenshot (bad quality, sorry):
    nw_monitor.png

    Bug/Exploit Forum Monitoring Script
  2. Thanks AndroidX, Zielschuss, HeyaEveryone, WilsGameAcc, Selma, rknDA1337, sketax (7 members gave Thanks to Reznok for this useful post)
  3. #2
    WilsGameAcc's Avatar Member
    Reputation
    2
    Join Date
    Dec 2014
    Posts
    11
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This thing is amazing. I am no python programmer so had to google how to use python and install the library but otherwise it works like a charm. I just want to keep an eye on the forums for a couple of days because of all the dodgy stuff being discovered.

  4. #3
    rknDA1337's Avatar Member
    Reputation
    12
    Join Date
    Apr 2008
    Posts
    144
    Thanks G/R
    6/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +1 works wonders as long as you can handle potential python library issues (was running some wrong kernel idk, easy enough to fix)
    I have a signature

Similar Threads

  1. Mail gold bug.. Exploit?
    By shadowdreams7 in forum World of Warcraft Exploits
    Replies: 15
    Last Post: 10-30-2007, 09:53 PM
  2. Can't post into exploits forum, bug
    By Hacky in forum Suggestions
    Replies: 14
    Last Post: 07-26-2007, 05:26 PM
  3. Nice Grinding Gitch/Bug/Exploit
    By AlienCrafted in forum World of Warcraft Exploits
    Replies: 39
    Last Post: 01-30-2007, 07:55 PM
  4. Shaman Bug/Exploit/Trick thing
    By Phrozt in forum World of Warcraft Exploits
    Replies: 5
    Last Post: 01-26-2007, 01:29 AM
  5. HK bug/exploit?
    By Fluffhead in forum World of Warcraft General
    Replies: 8
    Last Post: 09-14-2006, 06:47 PM
All times are GMT -5. The time now is 04:13 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search