Tagged Questions
-3
votes
1answer
78 views
I need help unblocking my internet as my parents set it to go off at 9PM [closed]
So my parents aren't very trusting, and they think that unless they block the internet I'll stay up all night on it. This is not true, and being the rebellious teenager with an interest in computer ...
2
votes
0answers
98 views
How to zoom the screen programmatically with private coregraphic methods (how to find function arguments)
as you may know Mac OS X has a pretty nice screen zooming functionality built in, which can be enabled in System Preferences => Universal Access.
Now I'm trying to trigger this screen zooming ...
-1
votes
3answers
149 views
Wireless hacking? Strange log on cmd [closed]
Running a macpro and have been using public wireless. I opened my cmd and saw that these commands had been run:
sudo echo AUTHENTICATED ; sudo -k ; echo AUTHENTIKILL ; echo PROCESSEDAUTHENTICATION
...
10
votes
1answer
713 views
Can a Mac OS X application prevent dlopen from loading a library?
After some careful debugging, I have discovered a bug in my application that is rooted in the system frameworks loading a buggy Apple bundle:
/System/Library/CoreServices/MLTEFile.bundle
I am ...
0
votes
1answer
75 views
lib vs MacOSX bundle: how to get some information about the proc environment, e.g. how was it loaded
I'm hacking around a bit.
I have some ObjC code which defines a function with __attribute__((constructor)) void init. I link this statically to some MacOSX app. It is also linked statically to some ...
2
votes
1answer
647 views
Abort trap instead of buffer overflow
I've been reading an excellent book Hacking by Jon Erickson. I wanted to compile an buffer overflow example and debug it, but instead of writing outside allocated space, the application just responds ...
0
votes
1answer
229 views
Skeletoning Windows XP or 7 for “fake Mac OS X” virtualization [closed]
Having virtualized the Mac OS X 10.7 Lion with VMware Workstation i want to start with iOS development and it works.
However I want to achieve better performance to run the Mac OS as a "primary OS" ...
2
votes
4answers
1k views
Obj C and class-dump protection
I understand that it is easy to hack Mach-O executable, I just want simple protection against "class-dump" tool. Is there any tool or XCode plugin that can change all classes names and class functions ...
2
votes
1answer
452 views
Cocoa/Mac OS X: Detect Application Launch Event
Is there a way to somehow hook into the system event of an Application Launch in Mac OS X? For example, let's say that I want a simple script or program to run each time a specific application is ...
0
votes
2answers
123 views
For business, which OS is more secure: Windows 7 or OSX 10.6? [closed]
I've seen the outcomes of certain hacking competitions yield varied results and the argument over which OS is currently more secure has never seemed to go beyond an anecdotal level. I currently split ...
1
vote
4answers
154 views
Hacking and different environments [closed]
For a long time, I've wanted to become a security expert. In fact, I've always wanted to know everything there is to know about computers in general.
So I did some reading on viruses and the different ...
7
votes
5answers
5k views
readelf-like tool for Mac OS X?
Is there a tool for reading Mac OS X binaries that would print information about relocation tables and symbol offsets similar to this readelf output?
readelf -r app
Relocation section '.rel.dyn' at ...
18
votes
10answers
2k views
Can gdb make a function pointer point to another location?
I'll explain:
Let's say I'm interested in replacing the rand() function used by a certain application.
So I attach gdb to this process and make it load my custom shared library (which has a ...
2
votes
4answers
1k views
SetWindowsHookEx for Mac OS X?
Windows hooks allows you to poke inside other processes and sometimes alter their behaviors.
Is there such thing for Mac OS X?
Thanks!
0
votes
2answers
176 views
argument types of undocumented Objective-C methods in Instruments (OSX)
Is there a way to determine the argument types of Objective-C methods traced by Instruments?
I created a custom DTrace Instrument that just lists all Objective-C calls in a class. I am trying to ...
