Jump to content
View in the app

A better way to browse. Learn more.

OSBot :: 2007 OSRS Botting

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Zappster

Suspended
  • Joined

  • Last visited

Everything posted by Zappster

  1. The method switches to equipment tab itself
  2. 3$ btc scammer
  3. Lol xd I once was doing the crocodile slayer task but ran out of waterskins, had only a couple to kill so decided to risk it.
  4. I tried out HCIM but I died because I was drunk running around Zeah, I don't play it anymore. Offer me?
  5. I have no idea. I'm no designer xD I used Paint and dragged down until I reached 750 pixels down -> copied -> sent to imgur and repeat No idea how to get rid of those lines you'll just have to either 1. Work around them 2. Find a fix
  6. Yeah. I managed to split it up, here's the full thing combined: Looks weird with those lines, but GL!
  7. Edit: I see you already know you can change the size, my bad The max I can set an image too is 1000x750 maybe you can try slicing it up to extend the height
  8. Post your examples so we can see
  9. Depends on the function.... If I'm making a site, when it's in debug mode I'll display exceptions on the website. If it's going live, I'll log the exceptions to a file. But even then it doesn't help, take this PHP code as an example: <?php $mysqli = mysqli_connect('localhost','username','password','database'); if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } function selectUserByID($id){ global $mysqli; $query = "SELECT * FROM users WHERE id = $id"; if ($result = mysqli_query($mysqli, $query)) { while ($row = mysqli_fetch_assoc($result)) return $row; }else{ //Query failed exception here return null; printf("Error: %s\n", mysqli_error($mysqli)); } } ?> Now, let's say we are gunna send a GET value to selectUserByID() and then output the full results <?php require_once("mysqli.php"); if(isset($_GET['id'])){ $user = selectUserByID($_GET['id']); if($user != null){ $keys = array_keys($user); foreach($keys as $key){ echo $user[$key].'</br>'; } } } ?> Looks fine? Right? Well, wrong. This is open to MySQL injection. Passing a ' to it will trigger the " printf("Error: %s\n", mysqli_error($mysqli)); " in our mysqli page. This let's us know that the page is open to injection. Even if we commented out the stuff that shows the error, it would be obvious (since the output data will be messed). The attack can then inject malicous mysql queries via the GET. The mysqli will execute the query and because it was executed successfuly, the exception is never triggered A fix to the above function would be to add "$id = mysqli_real_escape_string($mysqli,$id);" Or better yet, switch too PDO/Mysqli via Objects. So whilst exceptions can allow us to log/display errors and keep the page running, it doesn't stop this example. If you don't want to get hacked, you need to write good code and to never trust the user.
  10. yeah then lets sit back and watch his app get hacked
  11. oh yeah hes fucked man
  12. I wonder if he'll make a version of OSBot in HolyC. Maybe Jagex won't touch gods accounts
  13. 17MB OS lol crazy aint it? like.. seriously who has that much free space on a tape? Don't worry tho, he offers a solution
  14. Omg 6:30
  15. Issue was resolved in CB. Solution: Remove the special chars from osbot password
  16. You can start OSBot in debug mode which will allow you to connect with your IDE. You can then use this to step thru your code and all that jazz.
  17. Wouldn't your previous work solve this issue and allow it to be pulled? http://www.krimsky.net/pixelocr.php
  18. Zappster replied to phony's topic in Scripting Help
    I'm not 100% sure since it's been a while that I had to do anything with interacting outside of inventory, but I think it will left click if the wanted interaction is first.
  19. Zappster replied to phony's topic in Scripting Help
    Just try to avoid making your own interaction events. Don't reinvent the wheel To interact with a cake stand... Objects api It's the same sorta stuff if you want to access items/npcs/entity
  20. Step 1. Find a mule reciever Step 2. Make the same username as the mule but with a space in it Step 3. ??? Step 4. Profit
  21. What's more interesting is why did an account go under the radar with that much wealth for so long?
  22. Weath just makes alts and spawns money on them and then bans them.
  23. I consider myself a motherfucker so I pressed like.
  24. Requesting a title change too delusional monkey. You guys win.
  25. Fuck man you're such a massive troll. Well played 10/10

Account

Navigation

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.