Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › [Release] Pastebin Quick Downloader / Quick Link

[Release] Pastebin Quick Downloader / Quick Link

Posts 1–10 of 10 · Page 1 of 1
AC
AceKill3r
[Release] Pastebin Quick Downloader / Quick Link
Sup guys. While i've been trying to stay awake all day, i got really bored so i decided to try and make something that works with Pastebin.com - #1 paste tool since 2002! ( using their API of course) etc.. so here is a program i come up with! Nnot sure if this has ever been posted before any where.. but here is a demo:



Virus Scans:
VirusTotal - Free Online Virus, Malware and URL Scanner

Pastebin Quick Poster.rar - Jotti's malware scan


Most credits goto pastebin for letting me use their API!
#1 · 15y ago
Jason
Jason
Source is clean, however, you need to change this:

[highlight=vb.net]
[text] = ([text] & str5)
[/highlight]

To this:
[highlight=vb.net]
[text] &= ControlChars.CrLf & str5
[/highlight]

Otherwise it just concatenates all your lines into a single line, see my "test" upload link if you don't follow:

Public Class Form1 Dim thisIsATest As String = St - Testing PUpload

You didn't add a newline after each Console.ReadLine.

And also, I suggest making this a WinForms app opposed to console, so people can actually copy and paste code from their IDE to upload.

ANNNNNND Lastly, you didn't allow for Pastebin's anti spam protection (if the source contains links, it will trigger spam protection and you'll need to enter a captcha)

Either way, nice job.

/approved
#2 · 15y ago
Hassan
Hassan
Good Job, but console will fail when u press enter while writing source (in ur case). Might not even c+p correctly. U could've used GUI !
#3 · 15y ago
Jason
Jason
Quote Originally Posted by Hassan View Post
Good Job, but console will fail when u press enter while writing source (in ur case). Might not even c+p correctly. U could've used GUI !
Pressing enter won't make it fail hassan. That's why he has the "escape" string ".e.", it will continue appending each line until the line == .e.

But yeah, WinForms would be a lot easier.
#4 · 15y ago
LY
Lyoto Machida
Next time do it without console maybe it get better..
Good job.
#5 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
fuck yea! A FUCKING GREAT PROGRAM!!!! Saves me a lot of time
Thank you dude!!!
#6 · 15y ago
mnpeepno2
mnpeepno2
Quote Originally Posted by Jason View Post
Source is clean, however, you need to change this:

[highlight=vb.net]
[text] = ([text] & str5)
[/highlight]

To this:
[highlight=vb.net]
[text] &= ControlChars.CrLf & str5
[/highlight]

Otherwise it just concatenates all your lines into a single line, see my "test" upload link if you don't follow:

Public Class Form1 Dim thisIsATest As String = St - Testing PUpload

You didn't add a newline after each Console.ReadLine.

And also, I suggest making this a WinForms app opposed to console, so people can actually copy and paste code from their IDE to upload.

ANNNNNND Lastly, you didn't allow for Pastebin's anti spam protection (if the source contains links, it will trigger spam protection and you'll need to enter a captcha)

Either way, nice job.

/approved
can't you use vbcrlf?
#7 · 15y ago
Jason
Jason
Quote Originally Posted by mnpeepno2 View Post
can't you use vbcrlf?
Of course.

[highlight=vb.net]
ControlChars.CrLf
Environment.NewLine
vbNewLine
vbCrLf
[/highlight]

Plus a few more if you don't want both a carriage return AND a line feed. It doesn't really matter. I simply meant add SOME SORT of newline character when concatenating the contents of two separate lines
#8 · edited 15y ago · 15y ago
cgallagher21
cgallagher21
Goodjob but freezes sometimes.
#9 · 15y ago
AC
AceKill3r
i will re-make it soon, using windowsapplication
#10 · 15y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Tags for this Thread

None