Questions tagged [binaries]

* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.

191 questions
0
votes
1 answer

Why does conversion of binary to decimal involve the number '8'?

I am looking at the solution for the following coding challenge on Coderbyte: Using the Ruby language, have the function BinaryReversal(str) take the str parameter being passed, which will be a positive integer, take its binary representation,…
Iris
  • 9
  • 3
0
votes
1 answer

How to build two binaries .net core 2 console app

I am new in .Net core and c sharp. i would like to build two binaries in the same namespace. It's two console apps, one server and one client. I'd like to share some objects like "Scores" and think like that. Actually I have created two apps (via…
Oscar
  • 1,071
  • 13
  • 26
0
votes
1 answer

use of android device binaries while building Android Open Source Project

I am trying to build the AOSP for android Oreo,in the software requirement section it is mentioned about the following device binaries- (1)Preview binaries (blobs) (2)Factory images (3)Binary hardware support files branches (4)OTA images…
0
votes
1 answer

App Binaries: files submitted

I have just been introduced to a code bank of an iphone app that has been submitted to the app store several times. The most recent version was submitted in spring 2011. I can find the zip files of all the iOS app binaries submitted. However, when I…
maddie
  • 1,854
  • 4
  • 30
  • 66
0
votes
0 answers

How difficult would it be to change the variables $ prefix into an arbitrary character in php?

The question is simple. What if I wanted to prefix variables with © instead of $ in php, just for the sake of fun? Would it be hard to achieve? And a multicharacter prefix?
Loris Topa
  • 91
  • 2
0
votes
2 answers

PHP fix image bytes

I'm gonna strart with my use case, before i'll explane the problem i'm running in to. I'm building a mobile application using the phonegap framework. For this application i need to upload a file (a picture made with a camera). On most platforms i…
Erik
  • 630
  • 3
  • 9
0
votes
2 answers

Deploy linux binaries without internet access and without root?

boundaries: I have a Linux64 (Redhat 6.8) test-server here which I can access via FTP in our intranet. This server has no access to the internet. I want to use an SVN command line client and Python with cx_Oracle and an oracle client on that…
and0r
  • 305
  • 1
  • 4
  • 13
0
votes
0 answers

Is it possible to run the Linux binaries in WIndows using CygWin?

I have some gfortran linux binaries, which I have to execute in windows. I have tried to create a *.exe, by making the MakeFile for windows. However, I have some issues with recompiling the code in windows and also as I'm new to fortran, it is…
0
votes
1 answer

Eclipse doesn't find binaries in SW4STM32

I'm using workbench SW4STM32 in Eclipse Kepler for C/C++. Software doesn't find binaries files when I try to debug it. It creates it while building a project, I'm sure of this 'cause I can see them and use in others programms. However it cannot…
gariaable
  • 179
  • 1
  • 3
  • 15
0
votes
1 answer

How to find vulnerabilities in stripped binaries?

Do you just use tools like strace and a debugger to disassemble and find syscalls and then read the disassembly to find say for example a buffer overflow? Is that all you can do? I mean after all you don't have the source code. If someone could shed…
watchy
  • 81
  • 1
  • 8
0
votes
1 answer

Where can I download apache module binaries from?

I don't have VC or an other c compiler installed on my Win7 environment. I have located the x64 binary for Apache 2.4 but can't seem to find the same for mods. Any idea where i can find compiled, 64 bit versions…
glez
  • 1,170
  • 3
  • 16
  • 42
0
votes
0 answers

Creating binaries in Xcode 8

I am using https://github.com/swiftsocket/SwiftSocket for TCP and UDP connections. This library does not have Cocoapods support. Is there a way to create a binary, if so how can I create a binary and use it in my app, without including the source…
A.S
  • 798
  • 1
  • 10
  • 32
0
votes
1 answer

Mark binaries writable and executable in openBSD

As of OpenBSD 6.0 mandatory W^X enforcement is implemented. Binaries that need permission to violate this rule can be marked with the ld command: Identify W^X labelled binaries at execve(2) time based upon the WX_OPENBSD_WXNEEDED flag set by ld…
0
votes
1 answer

Missing PDB file and referenced output

My .Net Application, A, has a reference to library B. Library B has a reference to Library C. When I rebuild A (in debug mode), its output directory contains me the B.DLL and B.PDB files, but only the C.DLL file. C.PDB is missing, or rather it is…
Mike Pateras
  • 14,715
  • 30
  • 97
  • 137
0
votes
1 answer

Statically linked libraries: How to find out if code is in a contiguous area in the executable?

I read in this SO answer that When you statically link a file into an executable, the contents of that file are included at link time. In other words, the contents of the file are physically inserted into the executable that you will run. I was…