russ

Members
  • Content Count

    12
  • Last visited

Community Reputation

0 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. right let's have a look how you do this.. edit: ah, i get it, you're just crawling common URI's. simpler than I thought :kappa:
  2. As the above poster wrote, Java, isn't really useful in writing viruses as Java code runs in a virtual machine. However, the programming techniques you have learnt are transferable across any programming language so don't be discouraged, and go explore other languages e.g. C or Python.
  3. Wait, I don't get what you're asking for. Can you clarify what you mean by "validate the existence of an email on a server"? Do you want to check for example if '[email protected]' is a real email address by using an MX lookup? Or, are you trying to see if a server is handling emails?
  4. Nope, it's not. OP, you can get a 'free' .com/.net domain when you host with bluehost. They recover the fee for the domain from your hosting subscription with them. The domain will come free, but the hosting will not.
  5. thanks, wanna decompile this and fiddle around
  6. Yo. Over the past few months I have been coding an account generator/dispenser site that I intend on selling to somebody who's interested in opening their own site. It's not your average shitty php/mysql generator riddled with vulnerabilities :smart: . Anyways, I have published a live demo of the site and need some people to test it out and feed back to me any bugs they encounter and what they think in general. I'll give you paid membership privileges so you can test all the exclusive features too. If you're interested DM me and I'll send you the link. Cheers. Here's some screenshots if you're interested: https://gyazo.com/dce9639d05c9702bd0e004ee264030f1 https://gyazo.com/6e448731b2b547aab3aa3b061fb990ec https://gyazo.com/cef5a056d69a78b1bcef522b55e55224 https://gyazo.com/b86b04840eedccf5832dcc1bed26d692
  7. Not possible to 'randomly' generate accounts. However, you can crack some accounts and load them in a db and use that to dispense accounts.
  8. Nope, the server is throwing you them 403's and unless you can gain backdoor access, it's not doable.
  9. Yo. Currently in the process of developing a web-based account generator/dispenser over the past month for selling soon, and need some suggestions for new features. Below is a list of features I've already implemented. already done: - dynamic login/registration pages, no shitty md5 hashing on the backend don't worry :monkas: - dynamic account dispenser panel, with private + public generators and copy button, all populated on-the-fly using javascript - token based account generation system, membership dictates user's daily token allowance - account reporting/flagging system, user's membership dictates how many reports they can make a day (to avoid abuse) - news system, dashboard features news articles by staff - memberships page, all populated on-the-fly using javascript to be done: - finish off paypal ipn - make a start on 'my account' page - make a start on acp's structure - make a landing page I'm looking to sell on the entire project when completed later to one person, I don't intend for this to be like all them other sources coded by idiots and leaked all over the web. I've coded this to a high standard, not just stuck together some shitty php and mysql database :kappa: I've gone for a very minimalist and bloat free look, thus no ads plaguing everywhere etc. Here's a GIF to see the panel: https://gyazo.com/6919edc1930465504ed0b016a2266af6 Here's a screenshot of the memberships page: https://gyazo.com/bfe17a2d3aed31cf8cc50e79bdece52f
  10. Wouldn't be too hard to implement this actually, just have to make a script that would delete all rows with the banned uid (to avoid clashes), then set uid = banned uid where uid = your uid in all tables, effectively "transferring" the content. But what's the point lol?