Questions tagged [octet-stream]

29 questions
0
votes
2 answers

How to read Visual FoxPro .vcx files as plaintext?

I want to read VFP vcx files as plaintext in python. Any tips on how I should go about it? I understand that the mime type of the file is an octet stream, which is typically associated with binary files. Also apparent is that VFP uses vcx file in…
0
votes
0 answers

Strange behavior when converting images to base64 using Jimp and Javascript

I have the code in Javascript that I paste below, the result obtained with method 1 is correct, that is, an image in base64 format when the conversion starts from reading a file. But when I use the value returned by Jimp the conversion is done to…
0
votes
0 answers

Reverse Engineer API Call

I would like to reverse engineer an API Call of an android app. It's a POST request, octet-stream. The issue is that the content is binary but mixed with clear text. Here's a little snippet of the start of an API call content (got it using MITM…
theai.1
  • 21
  • 4
0
votes
0 answers

How to export utf-8 content in octet stream response for REST API endpoint?

I have a Quarkus based REST API project in which one endpoint is supposed to serve exported data as .csv files. Since i do not want to create temporary files, i was writing to a ByteArrayInputStream to be used in an octet stream response for my…
Furious Gamer
  • 359
  • 1
  • 3
  • 16
0
votes
0 answers

What is this structure coming from a fetch that returns a octet-stream?

I'm tring to retrieve a list of files from an API using axios, in Node.js. What I get is what I assume is an ArrayBuffer string. I'm using the following code: axios.get('http://api.com/filesList').then(response => { …
coldpumpkin
  • 711
  • 4
  • 14
  • 30
0
votes
1 answer

Downloading file onClick is downloading on refresh

In my documents table I'm mapping through some metadata to get a filename and docid that is getting passed to my DocumentDownloadButton: const DocumentsTableBody = ({ documentMetadata, tableProps }) => { const { Row, Data } = Table return ( …
meWho
  • 129
  • 1
  • 8
0
votes
0 answers

How to get ResponseHeaders within a application/octet-stream in Context of webClient?

When implementing following ResponseEntity resp = webClient.get() .uri(UriComponentsBuilder.fromHttpUrl(x.getUrl() + x.getPath()).queryParam("key", keysList) .build().toUriString()) …
0
votes
0 answers

extract data from octet-stream with python

I tried to zip a folder with 50 GB worth of data (images and documents) on windows system but it resulted as a 50 GB zip archive that has type application/octet-stream. It's too late when I discover the issue since I have deleted the source data. I…
0
votes
1 answer

Failed to fetch for application/octet-stream for small subset of users

I have two versions of an API I can toggle via a feature flag. (One that returns application/json and another that returns application/octet-stream) When I enabled the feature flag to use the new application/octet-stream There seems to be a small…
Kenneth Truong
  • 3,882
  • 3
  • 28
  • 47
0
votes
0 answers

How to I determine the application needed to open application/octet-stream

I decoded the response of an HTTP request from base64 into binary and it seems like the data is consistent with application/octet-stream as per this website. I am expecting the response to have some sort of structured data format like JSON, but I'm…
0
votes
1 answer

Using NodeJS (Express) how can I send a file to the browser that has been fetched from a REST call

I am using the below code in a node express application to fetch a binary file (PDF) and serve it to the browser. However, it's not working! With the below code I seem to see the binary content of the PDF in the browser window, eg %PDF-1.3 %���� 1 0…
Storms786
  • 416
  • 1
  • 7
  • 20
-1
votes
0 answers

random format of files that I found them in application/octet-stream MIME type

I want to know what is some files that I found an old vocal book software. I think they're something like audio files but I don't know how to play them or convert them to a regular audio formats so then I can play them. random formats…
Amir Jam
  • 1
  • 1
-1
votes
1 answer

Converted byteArray data to PDF not opening

I am reading data from a CSV file and saving it to a Map object called 'record'. I am trying to convert the blob data from the record object and save the data to its document file. I have tested for image documents and they convert & save fine to…
1
2