Astro1111

Members
  • Content Count

    19
  • Last visited

Everything posted by Astro1111

  1. I think overall I have liked Python the most. It is the easiest to use but can be somewhat limiting. If anyone is looking for a good starting language I would 100% suggest Python because it's a good middle ground and not too technical for complete beginners.
  2. This is new and I would like to try it! Thanks for the share!
  3. I am finally going to start cracking and I can't get an invite to sentry.mba so I am going to need this.
  4. I know this is an old-ish thread but I think doing proxy grabbers and account crackers is a cool thing to try to do. It will probably take a lot of time but there are plenty of libraries like "requests" that you can use to grab them from sites.
  5. I tested this and I think it blocks it for non-upgraded people.
  6. If I were to guess they probably have sources to sell / give them DB leaks buuuuut they might have some sites they check regularly for new leaks so I would say maybe possibly lol.
  7. Happy birthday @floraiN I may be new here but I still mean it <3
  8. Yeah I saw that and I was thinking about leaking mine there but I know by looking at some other forums that Garry's Mod Leak sections do pretty well and attract a lot of people. Hmm let @florain look into it. :monkas: I honestly do appreciate your replies it's good to consider everything. :thinking:
  9. Yeah I saw that and I was thinking about leaking mine there but I know by looking at some other forums that Garry's Mod Leak sections do pretty well and attract a lot of people.
  10. I think adding a Garry's Mod Leaks section would be pretty cool. I know that I have joined and contributed to forums because of Garry's Mod Leak sections. Not a large suggestion and could be pretty easily implemented. An extra note, Garry's Mod addons are written in gLua and a lot of times people who leak the addons throw in a backdoor so you would have to consider that as well.
  11. Hi I'm new here. I used to get on forums like this all the time but kinda stopped for a few reasons. I am slowly getting back into it and I decided to make this my new home because you all seem pretty cool. A little bit about me, I am a programmer and I am mostly here to make my own cracking programs or tools to make cracking easier for me and I like to share my research with other people. I think cracking is fun and it can teach people a lot about account safety. Annnnyyyyyyways I hope to get to know you all better and maybe become an active contributor. Thanks for reading! <3
  12. I'm a full-time student studying Computer Science. I do internships for front end development over breaks.
  13. I'm in NA Central and literally anything is better than tornadoes.
  14. Astro1111

    How?

    Not everyone who views a thread replies to it. In fact, most people don't.
  15. I don't want to go down the path of leaching but this is exactly what I need. Thanks a ton for the share.
  16. I think something like Milk God would be cool. There is a good chance it's already taken but you could make your logo a bag of milk with a cool face on it lol.
  17. can we install phpbb themes in mybb cz i already bought a phpbb theme From what I gather I think converting a phpBB theme to myBB would be almost impossible because you can't use php in myBB themes, however, there are mods that will let you. You would be better off either getting a new theme and using myBB (you will probably get better support) or keeping phpBB and just trying a fresh install.
  18. I made a REALLY simple proxy list maker in Python. [hide] Instructions: It uses https://free-proxy-list.net/ so all you have to do is go on the site, copy the table into input.txt and run the program and output.txt is your final list. I'm sure just by the way this works it will work on more sites than the one I listed but I can assure you it at least works on this site. Also the main program needs to be in the same directory as input.txt for this to work. Code: fin = open('input.txt', 'r') fout = open('output.txt', 'w') for line in fin: splitLine = line.split() fout.write(f"{splitLine[0]}:{splitLine[1]}\n") [/hide]