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
5
votes
2 answers

LARAVEL Payload is invalid error but decrypted data is correct

Recently i made new project with composer and added very basic authentication with make:auth - nothing fancy. Next i wanted to encrypt name and email columns on my database so i changed their types from VARCHAR(191) to LONGTEXT and added some very…
180doman
  • 301
  • 1
  • 4
  • 15
5
votes
1 answer

what payload data exactly means in nodejs

Can someone explain me the meaning of payload data in nodejs. I am bit confused here about the term payload data. I am using payload.somevariable. I thought I am getting the payload data from the HTTP request.
Lovika
  • 577
  • 2
  • 10
  • 21
5
votes
1 answer

Retrieve FCM data payload from active notifications

We have a back-end server that sends FCM push notifications with a data payload to Android and iOS devices. I am working on the Android app. When the app is in the foreground, onMessageReceived is called and the data is retrievable from…
5
votes
1 answer

Firefox push notifications - send data via curl

Mozilla Firefox since 44 version (unlike 49 version of Google Chrome) supports push-notifications with payload. One can see examples here. Firefox demo project, which is mentioned on Firefox wiki page, generates curl run parameters as: curl -I -X…
Maxim Korobov
  • 2,574
  • 1
  • 26
  • 44
5
votes
1 answer

How to block specific pushes with github webhooks?

I am trying to protect my github repo from some specific pushes (e.g. pushes with conflict markers like <<<<<). At first, I tried to write a pre-commit git hook to block those specific commits. Then realized github repositories doesn't accept…
Bidhan Roy
  • 441
  • 4
  • 14
5
votes
1 answer

Entity Framework Code First Self Referencing Parent Child with Payload

I'm attempting to set this up using code first in entity framework and am running into difficulty. To describe what i'm trying to accomplish: Have an entity of Product. This product optionally may have one or more related "child" products. A product…
Bumble
  • 97
  • 1
  • 7
5
votes
2 answers

Java: Adding raw data to payload Httpost request

I intend to send a simple http post request with a large string in the Payload. So far I have the following. DefaultHttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost("address location"); String cred =…
James Mclaren
  • 666
  • 4
  • 10
  • 25
5
votes
2 answers

Send HTTP Post Payload with Java

I'm trying to connect to the grooveshark API, this is the http request POST URL http://api.grooveshark.com/ws3.php?sig=f699614eba23b4b528cb830305a9fc77 POST payload {"method":'addUserFavoriteSong",'parameters":{"songID":30547543},"header":…
Kooshiar Azimian
  • 75
  • 1
  • 2
  • 8
5
votes
2 answers

iOS: MDM Check-in samples

I am in early stage of Mobile Device Management implementation. I am in process to get iOS Enterprise developer account.I have already started exploring MDM Server implementation. I need some iOS sample Check-in data which is received from iOS…
user1315958
4
votes
2 answers

iOS: config profile for mobile device management

I am able to create and install(in iOS devices) general mobileconfig profile generated by iPhone configuration utility(IPCU) v3.5(289) in Mac OS 10.6.8. But when I am generating config profile for mobile device management, not able to install it in…
iphoneconfig
  • 143
  • 4
  • 5
4
votes
1 answer

Spring Integration Get HTTP Outbound Gateway Response

I need to POST a REST service call and get the data it returns (all of this is with JSON). I have an outbound-gateway with its reply-channel as a chain, and the chain has one transformer.
Alex Beardsley
  • 20,988
  • 15
  • 52
  • 67
4
votes
6 answers

Should network packet payload data be aligned on proper boundries?

If you have the following class as a network packet payload: class Payload { char field0; int field1; char field2; int field3; }; Does using a class like Payload leave the recipient of the data susceptible to alignment issues when…
zooropa
  • 3,929
  • 8
  • 39
  • 61
4
votes
0 answers

413 Payload Too Large -- Unable to Solve using Other Solutions

I keep sporadically getting this error, fixing it, and then getting it again. I followed the instructions for the highest voted answer on this following question, and it didn't work unfortunately. I have a pretty concise server.js file, so I'm…
user17306847
4
votes
1 answer

Get custom payload of push notification while app is running background

Hey can anybody tell how to get custom payload of push notification when app is in background? If your app is in the background and you receive a push notification and the user taps app "View", the application is launched and…
thatguy
  • 312
  • 1
  • 6
  • 19
4
votes
0 answers

dusterio/lumen-passport: Pass custom data in JWT Payload

I am using lumen-passport for authentication and authorization. When I decode the JWT token I get payload as below: { "aud": "9420abb1-1470-4895-8666-a702b415cb59", "jti":…
aagjalpankaj
  • 1,160
  • 1
  • 15
  • 25