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
8
votes
1 answer

Jenkins: Access bitbucket payload in shell

According to the documentation of the bitbucket plugin for Jenkins (https://wiki.jenkins-ci.org/display/JENKINS/BitBucket+Plugin) it should be possible to access the payload infos through the environment varaible $BITBUCKET_PAYLOAD. However when in…
JimZer
  • 918
  • 2
  • 9
  • 19
8
votes
3 answers

How large can an appengine task payload be?

I'm using the new experimental taskqueue for java appengine and I'm trying to create tasks that aggregate statistics in my datastore. I'm trying to count the number of UNIQUE values within all the entitities (of a certain type) in my datastore. More…
aloo
  • 5,331
  • 7
  • 55
  • 94
8
votes
1 answer

What is a "Payload"? e.g XML Payload

While browsing some web service docs, I came across the word "payload", "xml payload" ... From wikipedia: "*Payload in computing (sometimes referred to as the actual or body data) is the cargo of a data transmission. *" Does not make much…
gilzero
  • 1,832
  • 4
  • 19
  • 26
7
votes
3 answers

How to validate date type in POST payload with flask restplus?

Consider the following: from flask import Flask from flask_restplus import Api, Resource, fields app = Flask(__name__) api = Api(app) ns = api.namespace('ns') payload = api.model('Payload', { 'a_str': fields.String(required=True), …
mRcSchwering
  • 820
  • 8
  • 25
7
votes
4 answers

Raw load found, how to access?

To start off, I have read through other raw answers pertaining to scapy on here, however none have been useful, maybe I am just doing something wrong and thats what has brought me here today. So, for starters, I have a pcap file, which started…
Colabambino
  • 504
  • 1
  • 4
  • 11
7
votes
1 answer

Reading an NDEF message from an NFC tag from an Android application

I am trying to create an application using NFC and I just want to try and read an NFC tag and get the text message from the tag and place it into a TextView. I have code for it already, but nothing happens when I try to pair the phone with an NFC…
James Meade
  • 1,147
  • 5
  • 22
  • 46
7
votes
1 answer

Generating a JSON payload for POST HTTP request in Objective-C

Does anyone have any sample code to create a JSON payload to be sent as a HTTP POST Request in Objective-C? An example of the json payload I am looking to generate looks like: {__metadata:{\"Uri\":\"/NewLoc/\", \"Type\":\"Location.NewLoc\"}, …
Zap
6
votes
3 answers

mobileconfig file with mdm payload, is invalid profile

I'm trying to install .mobileconfig file that was created through IPCU. but when I click on an attached .mobileconfig file in mail. It occured error message as "invalid profile". what is problem ? if the certificate is problem, please let us know…
user1111216
  • 61
  • 1
  • 4
6
votes
0 answers

Avoid enormous network payloads with a video on my home page banner

I have a website with a video on my homepage banner that plays automatically when the user gets on the page. Google PageSpeed Insights is complaining about the video network load because of it. I was wondering how I could avoid getting this…
skimah
  • 91
  • 7
6
votes
2 answers

What is the use case of javax.validation.Payload in Bean Validation API?

Bean Validation specification defines: Constraint annotations must define a payload element that specifies the payload with which the constraint declaration is associated. The type of the payload parameter is Payload[]. Class[]…
hamidreza75
  • 567
  • 6
  • 15
6
votes
1 answer

How long can messages be when posting to a Microsoft Teams connector webhook?

I am posting the results/logs of a CI/CD system to Microsoft Teams. While handling some failed builds with longer results, I stumbled upon the following error returned by the webhook URL…
Gabriel Petrovay
  • 20,476
  • 22
  • 97
  • 168
6
votes
1 answer

jsonwebtoken: what is payload

i want to use json web tokens for validating user and i am about to use jwt.sign method, but "payload" term confused me according to wikipedia payload definition (in computing) is: In computing and telecommunications, the payload is the part of…
ilia
  • 339
  • 8
  • 23
6
votes
3 answers

How can I create a json payload for a POST request?

request, err := http.NewRequest("POST", url,bytes.NewBuffer(**myJsonPayload**)) I am trying to make post request with dynamic 'myJsonPayload', which will be changing for different request.
Zahid Sumon
  • 189
  • 1
  • 1
  • 6
6
votes
2 answers

Partitioning AWS Kinesis Firehose data to s3 by payload

I am using AWS-Kinesis-Firehose to injest data to S3, and consume it afterwards with Athena. I am trying to analyze events from different games, to avoid Athena explore much data I would like to partition the s3 data using an identifier for each…
6
votes
0 answers

Status 400: Invalid multipart payload format when testing

I have this route server.route({ method: 'POST', path: '/upload', config: { payload: { output: 'stream', parse: true, allow: 'multipart/form-data', }, handler: fileUploadHandler } }) which works perfectly fine…
Trung Nguyen
  • 71
  • 1
  • 5
1
2
3
57 58