CCC |Chaos BBQ 2009

July 3rd, 2009
CCCBBQ

CCCBBQ

Hatte vor einiger Zeit schonmal darüber gebloggt, das auch dieses Jahr das Chaos BBQ (Grillen) in Dortmund (NRW) stattfindet. Dies ist in der Zeit vom 17.07.2009 – 19.07.2009.

Bei dieser Veranstaltung geht es natürlich nicht nur um das leibliche Wohl und das Verzehren von Grillgut. Hier werden auch zahlreiche Vorträge und Workshops aus verschiedenen Bereichen angeboten.

Näheres unter : >Klick<

Da ich zu 98% dort erscheinen werde (und hoffentlich nicht alleine) wird man sich sicher dort treffen. Hoffentlich schaffen es J0hn.X3r und Nazrek noch eine Mitfahrgelegenheit zu finden.

Vllt. schafft man es sich ja als Gruppe zu treffen ;) Wenn auch ihr kommt schreibt in den Comments oder an tmh[at]no-trace.cc

conpresso 3.4.8 blind injection

July 2nd, 2009

Nun auch auf milw0rm.com verfügbar ;)

http://www.milw0rm.com/exploits/9077

Php | IpCounter Besucher auslesen

June 28th, 2009

Hier mal ein kleiner Schnipsel den Lainux mir mal geschrieben hatte. Mit diesem könnt ihr von IpCounter.de die aktuelle Online Zahl der Benutzer auslesen.

function GetOnlineUserFromIPCounter($id)
{
   $html = implode('', file("http://www.ipcounter.de/stats.php?u=$id"));
   $count = strstr($html, '<span style="font-size: 12px;"><strong>');
   $count = substr($count, strlen('<span style="font-size: 12px;"><strong>'));
   $count = substr($count, 0, strpos($count, "</strong>"));   
 
   return $count;
}
echo GetOnlineUserFromIPCounter("1");

Kartoffel-Hack v3.4

June 24th, 2009

Some people told me that the offests changed so I updated them. I wish you happy cheating with this new version.

New :
Some offsets changed so I had to update this :) !
- All features should work

Download: Readme / Cheat

Don’t be afraid the older versions still work, but not all of the features.

>>> Update: Speed Hack works again ;) <<< Just download the cheat again

Delphi – Hotkeys benutzen

June 23rd, 2009

Da ich nun von einigen schon zu diesem Thema befragt worden bin hier mal ein Schnipsel für euch ;)

unit Unit1;
 
interface
 
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, ExtCtrls;
 
type
  TForm1 = class(TForm)
    procedure FormCreate(Sender: TObject);
    procedure WmHotkey(var Msg: TMessage); message WM_HOTKEY;
 
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;
 
var
  Form1: TForm1;
  function RegisterHotKey(hWnd, id, fsModifiers, vk:cardinal):boolean; stdcall; external 'user32.dll' name 'RegisterHotKey';
 
implementation
 
{$R *.dfm}
 
procedure TForm1.WmHotkey(var Msg: TMessage);
begin
 
  if Msg.WParam = 1 then begin
     showmessage('Aktion Taste 1');
  end;
 
  if Msg.WParam = 2 then begin
     showmessage('Aktion Taste 2');
  end;
 
end;
 
procedure TForm1.FormCreate(Sender: TObject);
begin
RegisterHotKey(handle, 1, 0, $27) ; // Cursor Rechts
RegisterHotKey(handle, 2, 0, $28) ; // Cursor Unten
end;
 
end.

Eine Liste mit den Tastencodes findet man hier : >>>Link<<<


Core

Piratenpartei