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 › [Help Request] - PostData Air Data

[Help Request] - PostData Air Data

Posts 1–5 of 5 · Page 1 of 1
LI
LilGho$t
[Help Request] - PostData Air Data
Hey, so i was working on a little something and i wanted to know if there's such thing as "air data" in a post data method. What i mean by this is, let's say i'm posting data to a server. I do all the "byteData()" fun stuff, set the thing to post and do "reques*****ntentLength = byteData.Length" can i send data that's of know meaning but slows down the Upload time?
When "ciphering" a dll hack, most people would pump it with just "air data" by saying ".WriteByte(0)", but how can i do something similar to this with my webrequest and would it potentially slow down the servers speed of processing the request? This isn't meant as a dos tool btw, but it could probably be used in one.

@Jason, i feel like you'd be the most likely person to know how to do this.
#1 · 13y ago
Jason
Jason
As far as I know, using the provided .NET classes, this won't achieve much except lag the client as (from memory) the WebRequest classes use a buffered stream. You write all your data to the "request stream", but as far as I know this data isn't actually streamed to the server during the write, just buffered locally. The call to WebRequest::GetResponse() is what actually sends the data to the server and retrieves the response.

Because of this, doing a slow write, something like:

Code:
var dummyLength = 1000;
var dummyData = new byte[1];

var request = (HttpWebRequest)WebRequest.Create("http://example.com");
request.Method = "POST";
reques*****ntentLength = dummyLength;

using (var reqstream = request.GetRequestStream())
{
    for(int i = 0; i < dummyLength; ++i) 
    {
        reqstream.Write(dummyData, 0, dummyData.Length);
        Thread.Sleep(100);
    }
}

using (var response = request.GetResponse()) 
{
    // derp
}
Won't actually lock up the server for 100,000 ms. It'll lock up the client for 100,000 ms while it buffers the request, then it'll send all the data to the server at once. This would explain why WebResponse objects implement IDisposable but WebRequests don't.

Note: I could be wrong about this, I haven't actually looked into how Microsoft implemented these classes. You may be able to achieve what you want by opening up a TCP stream directly then stalling on it, but AFAIK most servers automatically drop off requests like that.
#2 · edited 13y ago · 13y ago
LI
LilGho$t
Quote Originally Posted by Jason View Post
As far as I know, using the provided .NET classes, this won't achieve much except lag the client as (from memory) the WebRequest classes use a buffered stream. You write all your data to the "request stream", but as far as I know this data isn't actually streamed to the server during the write, just buffered locally. The call to WebRequest::GetResponse() is what actually sends the data to the server and retrieves the response.

Because of this, doing a slow write, something like:

Code:
var dummyLength = 1000;
var dummyData = new byte[1];

var request = (HttpWebRequest)WebRequest.Create("http://example.com");
request.Method = "POST";
reques*****ntentLength = dummyLength;

using (var reqstream = request.GetRequestStream())
{
    for(int i = 0; i < dummyLength; ++i) 
    {
        reqstream.Write(dummyData, 0, dummyData.Length);
        Thread.Sleep(100);
    }
}

using (var response = request.GetResponse()) 
{
    // derp
}
Won't actually lock up the server for 100,000 ms. It'll lock up the client for 100,000 ms while it buffers the request, then it'll send all the data to the server at once. This would explain why WebResponse objects implement IDisposable but WebRequests don't.

Note: I could be wrong about this, I haven't actually looked into how Microsoft implemented these classes. You may be able to achieve what you want by opening up a TCP stream directly then stalling on it, but AFAIK most servers automatically drop off requests like that.
I was expecting to get bitch slapped for asking such a dumb question...

Lol as it turns out when you write to the server you can just add 100,000 to the content length and just use:
Code:
Dim postreqstream As Stream = postReq.GetRequestStream()
postreqstream.Write(byteData, 0, byteData.Length)
dim counter as int64 = 0
Do Until counter >= 100000
postReqStream.WriteByte(0)
counter += 1
Loop
postreqstream.Close()
Problem solved
#3 · 13y ago
Jason
Jason
Quote Originally Posted by LilGho$t View Post
I was expecting to get bitch slapped for asking such a dumb question...

Lol as it turns out when you write to the server you can just add 100,000 to the content length and just use:
Code:
Dim postreqstream As Stream = postReq.GetRequestStream()
postreqstream.Write(byteData, 0, byteData.Length)
dim counter as int64 = 0
Do Until counter >= 100000
postReqStream.WriteByte(0)
counter += 1
Loop
postreqstream.Close()
Problem solved
Yes, there's nothing stopping you from sending exorbitant amounts of data to the server. My point was that you don't actually have a live connection to the server while you're writing to the request stream, so "slowly" writing it is an exercise in futility.

Why you'd want to do this (aside from DDoS attempts), is beyond me though.
#4 · 13y ago
LI
LilGho$t
Quote Originally Posted by Jason View Post


Yes, there's nothing stopping you from sending exorbitant amounts of data to the server. My point was that you don't actually have a live connection to the server while you're writing to the request stream, so "slowly" writing it is an exercise in futility.

Why you'd want to do this (aside from DDoS attempts), is beyond me though.
Deals with an exploit in a servers code.
#5 · 13y ago
Posts 1–5 of 5 · Page 1 of 1

Post a Reply

Similar Threads

  • Easy Help Request.By KrustyKokehead in Vindictus Help
    6Last post 15y ago
  • HElp request ?By wakosam in CrossFire Help
    2Last post 15y ago
  • [Help request] Cheat engine says error on opening AVA.exe process :@By kalokoko in Alliance of Valiant Arms (AVA) Help
    0Last post 14y ago
  • [Help Request] Reobfuscate error 1.3.2 MCPBy LordPankake in Minecraft Help
    2Last post 14y ago
  • [Help Request] How to make No Recoil hack in Visual Studio?By Tstovall in CrossFire Help
    5Last post 15y ago

Tags for this Thread

None