Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReversecLabs/drozer
/ hexifyInt32
Method
hexifyInt32
src/drozer/modules/common/shell_code.py:50–53 ·
view source on GitHub ↗
(self, int32)
Source
from the content-addressed store, hash-verified
48
return
map(
lambda
s: int(s), inet_addr.split(
"."
))
49
50
def
hexifyInt32(self, int32):
51
byte =
"%.4X"
% int32
52
53
return
[int(
"0x"
+ byte[0:2], 16), int(
"0x"
+ byte[2:4], 16)]
54
55
def
hexifyNull(self):
56
return
0x00
Callers
2
generate
Method · 0.80
generate
Method · 0.80
Calls
no outgoing calls
Tested by
no test coverage detected