topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Sunday April 27, 2025, 10:37 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: [1] 2next
1
Living Room / Re: NULL
« Last post by argv on March 15, 2013, 11:01 AM »
if (NULL != false)
{
   NULL = false;
}
2
Post New Requests Here / Re: IDEA: Port free-er
« Last post by argv on September 17, 2012, 09:34 AM »

You could see the processes and the ports and kill the application directly from TcpView (http://technet.micro...ernals/bb897437.aspx). Probably is not exactly what you want but you will be able to identify and kill the process in fewer steps.
3
General Software Discussion / Re: Firefox 7 is out
« Last post by argv on September 27, 2011, 11:18 PM »
I have just switched to Chrome. Thunderbird also seems to follow the same trend: yesterday just got to version 7 but there is nothing changed which justifies the major digit incrementation.
4
Would a virtual machine (vmware) with Mac OSX 10.6.2 installed do the job?
5
Why not simply click Undo button in paypal? :Thmbsup:
6
Living Room / Re: Do it yourself dropbox
« Last post by argv on March 09, 2011, 08:55 AM »
And I have no MB limit
That's hard to believe

I know I personally never put anything private into my Dropbox folder.
Personally I'm using a TrueCrypt disk in the dropbox folder for really private data
7

Why does GOOGLE say it is spending such huge sums to advertise and promote and try to get people to switch to their Chrome browser?


Because they can  ;D
8
Also Sony - CFDRS60CP - Radio K7 CD Sound System - USB (140€ on Amazon)



9
Screenshot Captor / Re: Capture Area
« Last post by argv on August 11, 2010, 02:15 PM »
Yes only one monitor (laptop 15,4') Resolution 1920x1200. Please find below two screenshots one taken with ScreenCapture and another one with print screen and paste in Paint. In this case I used SC to capture all the screen. Using ScreenCapture is reacting like a kind of zoom, for instance if I want to capture a region, the view of the screen changes and the bottom and right part are no longer visible as long as screen capture selection cursor is active.

http://a.imageshack.us/img12/8807/s004.png

http://a.imageshack.us/img267/4103/62991645.png




10
Screenshot Captor / Re: Capture Area
« Last post by argv on August 10, 2010, 11:48 PM »
I have just installed the last version on my new Win7 Pro N 32bits system and I have the same problem. Is any option I could check?

11
Living Room / Re: Help! Really strange WiFi problem.
« Last post by argv on June 22, 2010, 03:38 PM »
MTU size problem? Try to set it to 1400 bytes
12
General Software Discussion / Question - Linux binary protection software
« Last post by argv on April 13, 2010, 10:19 AM »

I'm looking for a tool being able to encrypt / protect a linux binary (ELF) against reverse engineering. Something like AsProtect which unfortunately works only in Windows. Thanks!
13
General Software Discussion / Re: Alternatives to Daemon Tools?
« Last post by argv on April 13, 2010, 03:58 AM »
That, or fire up a disassembler and fix it :P

That might offend the license terms :)
I have tried several tools, but I always fall back to Alcohol 120% (lifetime free upgrade license)
14
General Software Discussion / Re: Timer with extras
« Last post by argv on January 30, 2010, 05:04 AM »
You might be able to do that with windows scheduler
15
I had some time so I tried the redirection using "Image File Execution Options" It seems to work pretty well, you have to create a copy of the wmplayer.exe binary with a different name (I have used xwmplayer.exe) and then to use this second name for the hijacked exe. It works with both wmplayer and vlc..

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\wmplayer.exe]
"Debugger"="\"C:\\Program Files\\Windows Media Player\\xwmplayer.exe\" C:\\sample.mpg"

16
If "Image File Execution Options" simply hijacks "mediaplayer.exe -> myhandler.exe", aren't you going to get into an infinite loop when "myhandler.exe" tries to use "mediaplayer.exe" to redirect *.mov -> "myfile.mov"? :)

Good question :)
17
In this specific case it might be easier to replace the executable of the registered media player with some batch which will always run the same movie. Or to use image hijacking; take a look at "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options"
18
General Software Discussion / Re: encrypted AHK script
« Last post by argv on January 20, 2010, 09:41 AM »
Doesn't matter what you do, if the script is going to send the password somewhere, it can be catched somehow. Sure, you can compile the script - people will just unpack or dump from memory. You can encrypt the password and decrypt it runtime, but that can be dumped from memory as well. There's nothing you can do about it, really :)

You are right, but remember, locks are for honest people. Just compiling should do the trick for most of the users
19
General Software Discussion / Re: encrypted AHK script
« Last post by argv on January 19, 2010, 02:24 PM »
Why not compiling the script and eventually compacting it with UPX (http://upx.sourceforge.net/)..
20
General Software Discussion / Re: Chrome OS preview looks pretty cool
« Last post by argv on November 22, 2009, 02:53 PM »
It seems a Google Chrome OS Virtual Machine is already available for download on mininova
21
General Software Discussion / Re: Chrome OS preview looks pretty cool
« Last post by argv on November 20, 2009, 12:10 PM »
Well, I'm looking forward to install it in vmware  :Thmbsup:
22
UrlSnooper / Re: Question about downloading from sites that block
« Last post by argv on July 24, 2009, 06:34 AM »
Use can use a proxy. What about using tor? http://www.torproject.org/
23
Living Room / Re: Weird Window When Computer Boots Up
« Last post by argv on June 05, 2009, 02:31 AM »
You should check in the services.msc which services are allowed to interact with the desktop, it can be a service
24
Living Room / Re: Weird Window When Computer Boots Up
« Last post by argv on June 05, 2009, 02:16 AM »
Does it appear when booting in safe mode?
25
It's better:

$entries = array();
   $total_t = 0;
   $total_s = 0;
   foreach ($cache_hits as $h)
      {
      $entries[] = $h['d'] . ' ' . $h['k'] . ': ' . comma_format($h['t'], 5) . ' - ' . $h['s'] . ' bytes';
      $total_t += $h['t'];
      $total_s += $h['s'];
      }
Pages: [1] 2next