QAZ

1,483
reputation
140 views

Registered User

name QAZ
member for 1 year
seen yesterday
website
location EU
age 28
Coffee goes in, code comes out!
Nov
24
accepted How to get the memory address of the Java heap?
Oct
6
awarded  Taxonomist
Oct
1
awarded  Popular Question
Sep
17
awarded  Yearling
Sep
11
comment Putting user input into char array (C Programming)
Andrew: good point! :)
Sep
11
revised Putting user input into char array (C Programming)
fix
Sep
10
comment Putting user input into char array (C Programming)
cool, enjoy learning C, its a great language! :)
Sep
10
answered Putting user input into char array (C Programming)
Sep
8
comment Java modified UTF-8 strings in Python
sounds good, thansk. checking it out now
Sep
8
revised Java modified UTF-8 strings in Python
more clarification
Sep
8
comment Java modified UTF-8 strings in Python
Thanks Tom but its a third part java app which I cannot modify so I must conform to its expected inputs.
Sep
8
comment Java modified UTF-8 strings in Python
Thanks McDowell, I am trying to interface with a JBoss web app which is using this modified utf8 format to read in strings via POST requests.
Sep
8
comment Java modified UTF-8 strings in Python
Hi Jon, I added a link to the readUTF method in the DataInput interface which mentions it a little. I'll try to dig up some more info.
Sep
8
revised Java modified UTF-8 strings in Python
added a note about modified utf8
Sep
8
asked Java modified UTF-8 strings in Python
Aug
23
answered Problem with showing some JPG files in Delphi
Aug
22
awarded  Popular Question
Aug
19
answered VS2008 on Windows 7 RTM with x64 compiler broken
Jul
28
comment Surprising software vulnerabilities or exploits?
I think people are upvoting a nice picture. As RBarryYoung said, being able to injecting code means game over, its hardly surprising, and its not a vulnerability its creative coding! Anyway, you would need some kind of pre existing vulnerability to be able to exploit something in this fashion. This is more like a payload.
Jul
20
comment Reject Non-localhost Attempts to Access Webrick
cool, glad it worked for you :)
Jul
20
answered Java Socket Testing
Jul
20
answered How does a system’s TCP/IP stack differentiate between multiple programs connecting to the same address and port?
Jul
20
accepted Reject Non-localhost Attempts to Access Webrick
Jul
20
answered Reject Non-localhost Attempts to Access Webrick
Jul
14
comment Interact with a Windows console application via Python
yes console_app works normally when run in cmd.exe It just outputs some numbers based on the input provided (and sometimes strings)
Jul
14
comment Interact with a Windows console application via Python
Thanks, good suggestions. I dont have access to the console app's source code unfortunately. Confirmed its writing to stdout and not stderr.
Jul
14
comment Interact with a Windows console application via Python
readline() just hangs too. I can confirm that the console app does output data which should be read in correctly on the python side.
Jul
14
asked Interact with a Windows console application via Python
Jul
8
comment Get Windows Service Pack Version from Java Applet?
PiPeep: just marked your answer as correct, enjoy your new 200 points! :)
Jul
7
answered How to get the memory address of the Java heap?
Jul
7
comment How to get the memory address of the Java heap?
"the Java heap is just memory allocated to the process by Windows from one of the process heaps.". This is not true, the Java heap is allocated (on Windows) via kernel32!VirtualAlloc and as such is not from one of the process heaps.
Jul
7
comment Get Windows Service Pack Version from Java Applet?
Thanks PiPeep, this would work if I was to use the "sun.os.patch.level" property to get the Service Pack version. Ideally I would prefer not to access this property and thus not have to not sign the applet. If their is no other way this answer is correct.
Jul
7
revised Get Windows Service Pack Version from Java Applet?
I would prefer not ho have to sign the applet but if its the only way its an acceptable answer.
Jul
2
revised Get Windows Service Pack Version from Java Applet?
improved note about AccessControlException and sun.os.patch.level property
Jul
2
comment Get Windows Service Pack Version from Java Applet?
This is true but perhaps their is another way to determine the service pack level other than trying to read the 'sun.os.patch.level' property?
Jul
1
revised Get Windows Service Pack Version from Java Applet?
added a note about not wanting to throw an AccessControlException.
Jun
30
comment Get Windows Service Pack Version from Java Applet?
Thanks, just tried. It works when used in a application but throws an AccessControlException when used from an applet. Thanks though.
Jun
30
asked Get Windows Service Pack Version from Java Applet?