Tagged Questions
1
vote
2answers
34 views
Executable Packer (decompression/decryption stub)
I am working on an executable Packer & I have done compression & Encryption part so far. Now I have to store decompression/decryption stub/routine in the compressed file. My question is that ...
0
votes
2answers
66 views
Copying a struct with dynamic array into a buffer in c
I want to manually build a dns query to the dns sever using socket APIs (it's part of the project and can not be changed). So I want to copy a struct like:
typedef struct {
uint16_t ...
0
votes
1answer
147 views
Packing in Python and Unpacking in C
I'm trying to pack integers as bytes in python and unpack them in C. So in my python code I have something like
testlib = ctypes.CDLL('/something.so')
testlib.process(repr(pack('B',10)))
which ...
1
vote
4answers
815 views
How to pack a hexadecimal value in an unsigned char variable in a C program?
I have a hexadecimal value "F69CF355B6231FDBD91EB1E22B61EA1F" in a string and I am using this value in my program by hardcoding the value in an unsigned char variable like this:
unsigned char a[] = { ...
1
vote
5answers
225 views
unused memory using 32 bit integer in C
I have the folowing struct of integers (32 bit environment):
struct rgb {
int r;
int g;
int b;
};
Am I correct in saying that, since rgb component values (0-255) only require 8-bits(1 ...
3
votes
3answers
293 views
Counting overhead due to packing in C (gcc/g++)
I'd like to count/sum up the overhead in an object file due to packing (and, ideally, have gcc minimize it for me).
For example, consider the following structure (32 bit x86, gcc):
struct a {
...
5
votes
5answers
2k views
use of the bitwise operators to pack multiple values in one int
Low level bit manipulation has never been my strong point. I will appreciate some help in understanding the following use case of bitwise operators.Consider...
int age, gender, height, packed_info;
...
2
votes
2answers
417 views
Detecting UPX programmatically
I'm trying to figure out how to detect whether a binary has been compressed with UPX. I am using a simple CRC to detect whether my app was in any way changed and if the CRC failed on the size due to a ...
4
votes
7answers
2k views
C++ packing a typedef enum
typedef enum BeNeLux
{
BELGIUM,
NETHERLANDS,
LUXEMBURG
} _ASSOCIATIONS_ BeNeLux;
When I try to compile this with C++ Compiler, I am getting errors, but it seems to work fine with a C ...
3
votes
6answers
4k views
C/C++ packing signed char into int
I have need to pack four signed bytes into 32-bit integral type.
this is what I came up to:
int32_t byte(int8_t c) { return (unsigned char)c; }
int pack(char c0, char c1, ...) {
return byte(c0) | ...
0
votes
3answers
180 views
Can marshalling or packing be implemented by unions?
In beej's guide to networking there is a section of marshalling or packing data for Serialization where he describes various functions for packing and unpacking data (int,float,double ..etc).
It is ...
6
votes
4answers
2k views
Union and struct packing problem
I'm writing some software where each bit must be exact(it's for the CPU) so __packed is very important.
typedef union{
uint32_t raw;
struct{
unsigned int present:1;
unsigned int rw:1;
unsigned ...
2
votes
1answer
1k views
Bit packing in C
I'm trying to convert an RGB image to an ARGB image, basically just adding 255 in for the alpha channel. I was wondering if there is any pack method to do this without iteration? So to iterate over my ...
7
votes
9answers
3k views
Getting different header size by changing window size
I have a C++ program representing a TCP header as a struct:
#include "stdafx.h"
/* TCP HEADER
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 ...