Tampering TCP data on a Windows applicationWhich tool can be used to connect two TCP/IP servers?What does...
Why does the author believe that the central mass that gas cloud HCN-0.009-0.044 orbits is smaller than our solar system?
Skis versus snow shoes - when to choose which for travelling the backcountry?
Is there a German word for “analytics”?
If nine coins are tossed, what is the probability that the number of heads is even?
Multiplication via squaring and addition
Why does Starman/Roadster have radial acceleration?
How to avoid being sexist when trying to employ someone to function in a very sexist environment?
Does music exist in Panem? And if so, what kinds of music?
Understanding Kramnik's play in game 1 of Candidates 2018
What's the purpose of these copper coils with resistors inside them in A Yamaha RX-V396RDS amplifier?
Can you 'upgrade' leather armor to studded leather armor without purchasing the new armor directly?
If a druid in Wild Shape swallows a creature whole, then turns back to her normal form, what happens?
GeometricMean definition
When should a commit not be version tagged?
How to approximate rolls for potions of healing using only d6's?
What is a term for a function that when called repeatedly, has the same effect as calling once?
What to do when being responsible for data protection in your lab, yet advice is ignored?
Easy code troubleshooting in wordpress
CBP Reminds Travelers to Allow 72 Hours for ESTA. Why?
Are small insurances worth it
What can I substitute for soda pop in a sweet pork recipe?
What if I store 10TB on azure servers and then keep the vm powered off?
Book where the good guy lives backwards through time and the bad guy lives forward
How to tighten battery clamp?
Tampering TCP data on a Windows application
Which tool can be used to connect two TCP/IP servers?What does this UDP Packet mean?LAN server emulator applicationMonitor/Track data sent over internet by an applicationCapture TCP communication on a specific port using wiresharkHow to monitor TCP connections over timehow to setup a publicly hosted tcp/ip webserver to receive gprs packets(lat/long and other data) sent from a sim900A gsm moduleTCP/IP rx data dropSend TCP with incorrect checksumsWindows 10 Home remote TCP connection
Is there an application where I can run another application and it will allow me to see and more important manipulate the TCP data sent to another server?
I'm using Wireshark to view the data, but I want to alter it on the fly. Is there a way of doing that?
windows networking tcpip
bumped to the homepage by Community♦ 9 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Is there an application where I can run another application and it will allow me to see and more important manipulate the TCP data sent to another server?
I'm using Wireshark to view the data, but I want to alter it on the fly. Is there a way of doing that?
windows networking tcpip
bumped to the homepage by Community♦ 9 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
Is there an application where I can run another application and it will allow me to see and more important manipulate the TCP data sent to another server?
I'm using Wireshark to view the data, but I want to alter it on the fly. Is there a way of doing that?
windows networking tcpip
Is there an application where I can run another application and it will allow me to see and more important manipulate the TCP data sent to another server?
I'm using Wireshark to view the data, but I want to alter it on the fly. Is there a way of doing that?
windows networking tcpip
windows networking tcpip
asked Mar 14 '12 at 10:37
user122926user122926
1011
1011
bumped to the homepage by Community♦ 9 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can use a tool called netsed to achieve this.
http://www.freshports.org/net/netsed/
I have used this on linux . The syntax for replacement with regular expression is same as "sed" tool but i think all the functionality of sed is not there in netsed.
On Windows you might have to run it with Cygwin.
add a comment |
Fiddler is the tool for that job, you just have to configure your application to use a proxy and you can then modify requests on the fly.
edit:
I assumed you were talking about HTTP but if you want to do the same thing with any TCP traffic have a look at those tools:
Hatkit
ettercap
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f400571%2ftampering-tcp-data-on-a-windows-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use a tool called netsed to achieve this.
http://www.freshports.org/net/netsed/
I have used this on linux . The syntax for replacement with regular expression is same as "sed" tool but i think all the functionality of sed is not there in netsed.
On Windows you might have to run it with Cygwin.
add a comment |
You can use a tool called netsed to achieve this.
http://www.freshports.org/net/netsed/
I have used this on linux . The syntax for replacement with regular expression is same as "sed" tool but i think all the functionality of sed is not there in netsed.
On Windows you might have to run it with Cygwin.
add a comment |
You can use a tool called netsed to achieve this.
http://www.freshports.org/net/netsed/
I have used this on linux . The syntax for replacement with regular expression is same as "sed" tool but i think all the functionality of sed is not there in netsed.
On Windows you might have to run it with Cygwin.
You can use a tool called netsed to achieve this.
http://www.freshports.org/net/netsed/
I have used this on linux . The syntax for replacement with regular expression is same as "sed" tool but i think all the functionality of sed is not there in netsed.
On Windows you might have to run it with Cygwin.
answered Mar 14 '12 at 10:45
dayadaya
2,3501217
2,3501217
add a comment |
add a comment |
Fiddler is the tool for that job, you just have to configure your application to use a proxy and you can then modify requests on the fly.
edit:
I assumed you were talking about HTTP but if you want to do the same thing with any TCP traffic have a look at those tools:
Hatkit
ettercap
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
add a comment |
Fiddler is the tool for that job, you just have to configure your application to use a proxy and you can then modify requests on the fly.
edit:
I assumed you were talking about HTTP but if you want to do the same thing with any TCP traffic have a look at those tools:
Hatkit
ettercap
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
add a comment |
Fiddler is the tool for that job, you just have to configure your application to use a proxy and you can then modify requests on the fly.
edit:
I assumed you were talking about HTTP but if you want to do the same thing with any TCP traffic have a look at those tools:
Hatkit
ettercap
Fiddler is the tool for that job, you just have to configure your application to use a proxy and you can then modify requests on the fly.
edit:
I assumed you were talking about HTTP but if you want to do the same thing with any TCP traffic have a look at those tools:
Hatkit
ettercap
edited Mar 14 '12 at 14:06
answered Mar 14 '12 at 10:48
ShadokShadok
3,6491726
3,6491726
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
add a comment |
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
Is this only for web content? the requests I want to manipulate are not web requests..
– user122926
Mar 14 '12 at 10:51
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
@user122926 - TCP packets are TCP packets....http traffic is tcp traffic. How about try it?
– Ramhound
Mar 14 '12 at 12:48
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f400571%2ftampering-tcp-data-on-a-windows-application%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown