Fresh and Tasty!

August 11th, 2008

have you ever tryed to compile the kaffeine-sc-plugin (softcam plugin for kaffeine) on ubuntu?

after installing all the lib-packages (X-libs, kernel headers, and so on), you get the message:

Good - your configure finished. Start make now

okay, what shall we do now?

we gonna type “make” now

now it tries to compile but we get an error-message like this:

make[3]: g++34: Kommando nicht gefunden
make[3]: *** [FFdecsa_test.o] Fehler 127
make[3]: Verlasse Verzeichnis ‘/home/chaos/kaffeine-sc-plugin-0.4.0/src/FFdecsa’

so let us have a look into the “Makefile” located in the “src/FFdesca” directory.

we just have to find the line:

COMPILER=g++34

and change it to:

COMPILER=g++

and now retry to compile the plugin (make)

aaand it works, now we have to install it:

make install

finished!

Where is the Softcam key file stored?

it’s located in ~/.kaffeine/SoftCam.Key (case-sensetive)

everything should work now : )

greetz chaos

July 28th, 2008

as the title says portbunny is a kernel-based port scanner!

but why do we need another portscanner, if we have nmap?

portbunny isn’t like nmap! it uses a different technic! [RST-ACK & SYN-ACK]

here’s a little description i found on the debian site:


“PortBunny is a Linux-kernel-based port-scanner created by Recurity Labs.
Its aim is to provide a reliable and fast TCP-SYN-port-scanner which
performs sophisticated timing based on the use of so called
“trigger”-packets. The port-scan is performed in 2 steps:
First the scanner tries to find packets, to which the target
responds (”triggers”). Second, the actual port-scan is performed.
During the scan, the triggers, which were found in the first scanning-phase,
are used to determine the optimal speed at which the target may be scanned.”

And here’s an example:

hades:~# portbunny www.google.com
Starting PortBunny 1.1
+++ Will scan 1697 ports on 1 hosts. +++
press h for help.
Best triggers for 64.233.183.104:
============================
TCP_SYN 80
============================
+++ Trigger-Phase done. The following hosts are up: +++
64.233.183.104

1 hosts total.
Results for 64.233.183.104
============================
64.233.183.104 80 OPEN http
64.233.183.104 113 CLOSED auth
64.233.183.104 179 CLOSED bgp
64.233.183.104 443 OPEN https
all other ports are FILTERED
1697 ports scanned.
============================
All done

it took 9,52 seconds and the scan was complete!

where do i get portbunny? —> HERE

wanna get more information?

here is a good presentation

and here is a video presenation from the ccc-congress [24c3] - it’s called port scanning improved!

greetz chaos =]

July 17th, 2008

here’s the screenshot of my conkyrc:

and here’s the conky.rc file:

conkyrc

any questions?

July 9th, 2008

hi guys!

i tryed to get linwizard working on my htc qtek 9100 (wizard)

and really, it works! =]

i took the gizard package:

gizard

a gentoo distri ;)

just login in with the the user root (no password) and type the command “startx”
now the X server and the window manager starts.

also the touchscreen is working!

btw:

if you connect your ppc with your computer (usb) you can connect to the the device over telnet (not ssh - you have to set the ip on your computer first)

i’m running it with haret 0.5.1

and my config looks like this:

set MTYPE 1229
set KERNEL “zImage”
set INITRD “initrd”
set CMDLINE “root=/dev/ram0 ramdisk_size=20504 init=/linuxrc panic=30 video=omapfb:accel console=tty0″
bootlinux

all the files in the gizard package are stored in the root directory of my storage card!

(the taskbar looks a little bit different)

stay’tuned chaos

any questions?

######################

thanks to gizard for the comment:

here’s the original screenshot of the gizard (standard X, without changing the theme)

greets

July 4th, 2008

here are my favorite unix commands =] :

  • echo ‘16i[q]sa[ln0=aln100%Pln100/snlbx]sbA0D4D465452snlbxq’ | dc
  • RTFM
  • echo ‘[q]sa[ln0=aln256%Pln256/snlbx]sb3135071790101768542287578439snlbxq’|dc
  • GET A LIFE!
  • %blow
  • %blow: no such job
  • \(-
  • (-: command not found
  • ar m God
  • creating God

greetz chaos :)

June 13th, 2008

yesterday (after i did some nasty things with my girlfriend),

i was sitting before my computer and had a look into the deeeeep black bash =]

okay, it makes no sense at all, i will start now:

my 5 favorite netcat (nc) commands:

  • a chat server:

on the server:

  1. $ nc -l [PORT]


on the client:

  1. $ nc [SERVER] [PORT]

  • act as a port scanner:

  1. $ nc -vz [HOST] [STARTPORT]-[STOPPORT]


for example:

  1. $ nc -vz localhost 80-90


this command scans for open ports between port 80 and port 90 on the localhost

  • sending devices:

on the server:

  1. $ dd if=/dev/mem | nc [RECEIVER-HOST] [PORT]


on the client:

  1. $ nc -l -v -p [PORT]>ram

  • act as a terminal-server:

on the server:

  1. $ nohup nc -l -p [PORT] -n -e /bin/sh &


on the client:

  1. $ nc -nvv [SERVER-IP] [PORT]


and here’s my favorite:

  • testing a service stabilty:

  1. $ cat < /dev/urandom | nc [HOST] [PORT]


you don’t have netcat?

type:
apt-get update && apt-get install netcat

or do it by yourself:
netcat

greetz chaos