Tuesday, May 27, 2014

Prepare your IDE SublimeText before learn Python




Prepare
  1. Download SublimeText in here 
  2. Following this settings :
  3. Install Package Control [ ctrl + ` ], after finish, close and open again your sublimetext
  4. Install Package [ ctrl + shift + p ] : All Autocomplete
  5. Install Package [ ctrl + shift + p ] : TrailingSpace
  6. Install Package [ ctrl + shift + p ] : AutoPEP8
  7. Install Package [ ctrl + shift + p ] : Theme - SolarizedDark
  8.  Following this settings 
{
    "font_size": 10,
    "ignored_packages":
    [
        "Vintage",
        "Theme - Soda SolarizedDark"
    ],
    "tab_size": 2,
    "theme": "Soda Dark.sublime-theme",
    "translate_tabs_to_spaces": true
}

Now, create new file, and save in your directory such as test.py and write standard code like

print "hello world"

and go to tools - Build System - Automatic / Python and Build or [ ctrl + b ]

Saturday, July 13, 2013

Simple analyst dns spoofing in form site



hi guys, I am including lay people in the security of information systems. Initially I was never in touch with penetration testing tools. and I now realize that I should have the ability in the field of information systems security. at least I can know what vulnerabilities exist on my website.
I'll just share a little about the security of dns spoofing. not many web programmers who know the security holes on its own website. Here I will take a few examples, at least we can secure the login form when we create a website that has a degree in permissions.

in my post this time, I will only discuss the security breaches that occur when we create a login form. alan affection for penetration testing using a simple tool called ettercap.

Her usual when we make a login form, we will make a name for each field with a memorable name. for example:

I will create a login form with username and password fields. usually a common web programmer will create a field name that is similar to the label field. as an example in flogin.php

The source code is  


<form action="tologin.php" method="POST">
Username <input name="username">
Password <input name="password">
</ form>

as a small picture, a login form with the HTML tag type as it is very vulnerable to capture in the dns spoofing techniques.

we prove to scan web pages which I have provided with a login form like the format.


# ettercap -T -q -M arp -i em1 -P dns_spoof ///



the technique as above, we will scan the network for which we use locan. ate whenever a user logs on and happened to be in our network and form login form as above, we will get results like this.


easy way to prevent this, do not use the name in the input field login form with username / password or user / pass to use the name with extra characters or use a different name from text label of field.

may be useful, and sorry if my english not  good 

Saturday, June 22, 2013

Simple Validation rule in CodeIgniter




now, i can share about validation rule in CodeIgniter. if you using validation default in CodeIgniter, you must follow rule module Library, Helper, etc in CodeIgniter.

if you not expert using JavaScript, ajax, or jQuery for validation in CodeIgniter you can try using validation in CodeIgniter this is rule validation in CodeIgniter :

Rule Reference

The following is a list of all the native rules that are available to use:
Rule Parameter Description Example
required No Returns FALSE if the form element is empty.
matches Yes Returns FALSE if the form element does not match the one in the parameter. matches[form_item]
is_unique Yes Returns FALSE if the form element is not unique to the table and field name in the parameter. is_unique[table.field]
min_length Yes Returns FALSE if the form element is shorter then the parameter value. min_length[6]
max_length Yes Returns FALSE if the form element is longer then the parameter value. max_length[12]
exact_length Yes Returns FALSE if the form element is not exactly the parameter value. exact_length[8]
greater_than Yes Returns FALSE if the form element is less than the parameter value or not numeric. greater_than[8]
less_than Yes Returns FALSE if the form element is greater than the parameter value or not numeric. less_than[8]
alpha No Returns FALSE if the form element contains anything other than alphabetical characters.
alpha_numeric No Returns FALSE if the form element contains anything other than alpha-numeric characters.
alpha_dash No Returns FALSE if the form element contains anything other than alpha-numeric characters, underscores or dashes.
numeric No Returns FALSE if the form element contains anything other than numeric characters.
integer No Returns FALSE if the form element contains anything other than an integer.
decimal Yes Returns FALSE if the form element is not exactly the parameter value.
is_natural No Returns FALSE if the form element contains anything other than a natural number: 0, 1, 2, 3, etc.
is_natural_no_zero No Returns FALSE if the form element contains anything other than a natural number, but not zero: 1, 2, 3, etc.
valid_email No Returns FALSE if the form element does not contain a valid email address.
valid_emails No Returns FALSE if any value provided in a comma separated list is not a valid email.
valid_ip No Returns FALSE if the supplied IP is not valid. Accepts an optional parameter of "IPv4" or "IPv6" to specify an IP format.
valid_base64 No Returns FALSE if the supplied string contains anything other than valid Base64 characters.

 
if you confused for using rule, you can read manual book or you can change and custom rule validation in class module.
for modify rule validation in CodeIgniter, you can open file in system/library/form_validation.php

for example in rule alpha..

public function alpha($str)
{
        return ( ! preg_match("/^([a-z])+$/i", $str)) ? FALSE : TRUE;
}

and using rule :

$this->form_validation->set_rules('name','Name Message','alpha');

alpha only make validation for if you input in form using space rule alpha make not valid you input form. because space not alphabetical characters. if you want using rule alpha and make space is valid in alpha rule, you just modify function alpha :

public function alpha($str)
{
        return ( ! preg_match("/^([a-z ])+$/i", $str)) ? FALSE : TRUE;
}

i just add space in [a-z] to [a-z ] very simple.
not modify? just make a new function in class form_validation.

finish, and sorry if my english not good.


Sunday, June 16, 2013

failed running MOCP




hai guys, i want to share a solution in MOCP.
when you running a MOCP, you find this problem

Running the server...
Trying OSS...

FATAL_ERROR: No valid sound driver!


FATAL_ERROR: Server exited!

first, you can try check your problem in ALSA

# alsa_out

and you will find :
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jackdmp 1.9.9.5
Copyright 2001-2005 Paul Davis and others.
Copyright 2004-2012 Grame.
jackdmp comes with ABSOLUTELY NO WARRANTY
This is free software, and you are welcome to redistribute it
under certain conditions; see the file COPYING for details
no message buffer overruns
no message buffer overruns
no message buffer overruns
JACK server starting in realtime mode with priority 20
audio_reservation_init
Acquire audio card Audio0
creating alsa driver ... hw:0|hw:0|1024|2|48000|0|0|nomon|swmeter|-|32bit
lsof: WARNING: can't stat() fuse.gvfsd-fuse file system /run/user/1000/gvfs
      Output information may be incomplete.
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel


ATTENTION: The playback device "hw:0" is already in use. The following applications  are using your soundcard(s) so you should  check them and stop them as necessary before  trying to start JACK again:

pulseaudio (process ID 1663)

JackTemporaryException : now quits...
Cannot initialize driver
JackServer::Open failed with -1
Failed to open server
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
jack server not running?

so you have problem in jack driver.

this is solution for it :

i find this problem in my fedora 18. I try install

1. # yum install jaaa.x86_64 japa.x86_64 ambdec.x86_64 pulseaudio-module-jack.x86_64 bio2jack.x86_64

2. # yum install jack-audio-connection-kit.x86_64 jack-audio-connection-kit-devel.x86_64 bio2jack-devel.x86_64

3. # yum install python-alsa.x86_64 alsa-tools-firmware.x86_64 alsa-oss.x86_64

after install you run this CLI

$ aoss mocp

if you reboot and will start using MOCP and find problem again about this, you just run

$ aoss mocp

have fun, and good luck.

Sunday, June 2, 2013

Aku tidak pernah MEMBENCI Indonesia !!!




MERAH PUTIH..!!!

negeri ini adalah negeri yang diberikan oleh Alloh SWT sebagai negeri untuk memimpin DUNIA.. yah.. itulah yang aku saya rasakan.

Bahasa persatuan ini haruslah menjadi bahasa persatuan di DUNIA..!!
karena bahasa Indonesia begitu kaya bahkan bahasa yang begitu Indah jika kita merangkainya. kemana saya harus katakan keinginan saya? haruskah saya meretas semua website di dunia ini, memberi tahu kepada mereka bahwa INDONESIA ADALAH NEGARA PEMIMPIN DUNIA.

setiap detik negeri ini semakin hancur dan semakin tak bermoral. tidak bisa mempertahankan apa yang di miliki, pemuda negeri semakin parah, seakan mereka bukan berasal dari negara Indonesia. sekolah di negeri inipun lambat laun semakin tidak beradab.. mereka membuang sedikit demi sedikit kutur Indonesia. andai pemuda di negeri ini tahu betapa hebatnya Indonesia. andai mereka sadar betapa kayanya Indonesia. 1 : 1.000.000 pemuda di negeri ini yang sadar akan hal itu. pemerintah yang selalu membeberkan kalau pemudah Indonesia harus menjadi penerus bangsa. aahhh tapi mana... yang mereka ucapkan itu hanyalah sampah.. pembogong.. tidak bisa dipercaya.

pemerintah negeri ini seakan tidak punya sedikit pun itikat untuk mewujudkan kata pencitraan itu. negeri ini payah, mereka yang menjadi dewa di negeri ini adalah mereka yang beruang.. bukan mereka yang sadar akan kata MERAH PUTIH. bahkan negeri ini put tak punya passion sama sekali. negeri ini sekarang sudah menjadi budak, menjadi pengikut, menjadi kacung...

tak peduli tulisan ini akan di cerca, dihina atau bahkan aku harus dibui karena menghina pemerintah negeri ini. biarkan mereka tau, biarkan aku yang mewakili hati pemuda negeri ini yang faham akan kata MERAH PUTIH.

semenjak aku mulai meminjakan kaki ku di ruangan kelas SD sampai sekarang.. hati selalu bertekad kalau negeri ini harus menjadi Juara dan memimpin dunia, kekayaan negeri ini harus terjaga. mereka yang bukan berasal dari Indonesia haruslah menjadi budak, bukan menjadi raja. pemimpin negeri ini haruslah menjadi pedoman bukan menjadi bahan cemoohan.... dan negeri ini harus MERDEKA sampai kapan pun. tidak butuh pemuda yang pintar.. negeri ini butuh pemuda yang peduli.. karena rasa peduli yang akan membuat pemuda negeri ini menjadi PINTAR..!!!!

Friday, May 31, 2013

laptop begadang gara-gara video Jalan-Jalan men Medan




ini sebenernya bukan review sih.. tapi curhatan gitu. sebenernya gue udah hindarin yang namanya waching twit nya malesbanget.com soal nya artikelnya suka bikin lupa kerjaan..haah becanda kok..
pas malem tadi iseng-iseng login twitter eh pas banget ada twit nya malesbanget.com gitu yang menjelaskan bahwa video jalan-jalan men 2 yang baru udah ada. terus gue langsung cek gitu ke website nya jalan2men.com eh ternyata bener ada yang baru.. nah pas mau nonton ada hal yang paling kesel yaiiituuuu.. internet nya lemot men. ya terpaksa si laptop gue suruh idup aja sampe buffering youtube nya selesai. dan gue tinggal tidur.

pagi pun tiba. 3 handphone yang di set alarm secara pararel pun berdering satu persatu dan mata pun mulai melek dan langsung cek hasil youtube nya dannn teerrrrrnyataaaa... lost connection. ahhh siap. udang ngarep banget nonton, di relain laptop begadang ternyata sia-sia.

perjuangan belum usai men. gue matiin laptop beberapa jam dan mulai dihidupkan kembali dan langsung buka website nya jalan2men.com dan langsung buka postingan episode 2 dan mulai buffering lagi youtube nya sambil download juga tuh video..heheh

ini buktinya :


kondisi masih belum nonton sih, yang bikin penasaran nonton sebenernya quis nya.. soalnya disana kita diharuskan nonton dulu sebelum mereview, sebenernya dari episode 1 juga keliatan gak asiknya, penuh skenario gitu jadi gak kaya jalan-jalan men yang pertama.. mereka bikin video nya kaya yang spontan gitu.. tapi sumpah gue gak bohong.. video yang judulnya [Video Seri Travel Indonesia] Teaser Jalan-Jalan Men 2013  Petualangan Mencari Harta Karun Indonesia bikin gue lupa waktu.. gue terus-terusan play tu video soalnya musik sama visualnya bikin semangat gitu.. ahh sial.

setelah nunggu beberapa jam karena kondisi koneksi internet yang super primitif akhir nya bisa juga nonton video jalan-jalan men di medan. bisa liat juga langsung di bawah ini nihh..
 



yahh sempet kecewa juga sih pas nonton yang episode 1. tapi ini gak bohong men.. video yang kedua epic dan pecah banget.. di episode 2 ini gue bisa tau kalau si jebraw tu keturunan india.. tapi kalau di perhatiin sih si jebraw malah mirip orang bangka...hehe

dan setelah nonton video nya, gue baru tau kalau medan sekeren itu.. yang gw bayangin sih medan tu kaya kota biasa aja, kaya sejenis kota di lampung atau palembang.. tapi di video ini nunjukin kalau kota biasa jadi terlihat luar biasa. sama kaya Yogyakarta, pas gw kesana Yogyakarta tu biasa aja, tapi liat video jalan-jalan men jadi luar biasa.. #hiks

Jalan-jalan men Medan ??? no comment deh.. rasa kecewa di episode 1 jalan-jalan men 2 di lupain.. dan dengan ini gue nyatain kalau video jalan-jalan men medang peeeeeecaaaaaaahhhh... and super epic.

nunjukin kalau medan kaya akan kuliner, sejarah, budaya, dan tempat-tempat yang gak pernah gue liat review nya di internet. di video ini gue bisa dapetin. di tambah kelakukan jebraw yang makin gokil.. asssseeeliii gua nyatain episode 2 medan suuuupperrrr pecaaaaahhh... suuuperrrr epic..

video nya nunjukin bahwa kita gak pelu banggain negara lain. yang kita cuma perlu meng ekspose kekayaan negeri ini sekecil apapun.. thx jalan-jalan men, malesbanget.com makin cinta sama Indonesia..

jadi pengen ke medan.. hehe