• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

LinuxSec Exploit

Nothing is Ever Locked

  • XSS Payloads
  • About Us

Mengenal Tentang Brainfuck Programming Language

April 11, 2015 by Jack Wilder Leave a Comment

Hmm… agak aneh ya . Tapi memnag demikian nama nya. Brainfuck Programming Language. Brainfuck adalah salah satu bahasa pemrograman yang diciptakan oleh Urban Muller pada tahun 1993, dengan tujuan diimplementasi pada compiler yang kecil.
Saya pertama mengenal bahasa Pemrograman ini kemarin pas ikut Cyber Defence. Dan disini saya akan share cara menerjemahkan Brainfuck sendiri.

Brainfuck Programming Language sendiri terdiri dari delapan perintah, dimana masing masing diwakili oleh karakter tunggal.

> Increment the pointer.
< Decrement the pointer.
+ Increment the byte at the pointer.
– Decrement the byte at the pointer.
. Output the byte at the pointer.
, Input a byte and store it in the byte at the pointer.
[ Jump forward past the matching ] if the byte at the pointer is zero.
] Jump backward to the matching [ unless the byte at the pointer is zero.

The semantics of the Brainfuck commands can also be succinctly expressed in terms of C, as follows (assuming that p has been previously defined as a char*):

> becomes ++p;
< becomes –p;
+ becomes ++*p;
– becomes –*p;
. becomes putchar(*p);
, becomes *p = getchar();
[ becomes while (*p) {
] becomes }

Sekian, semoga bermanfaat ya 😀
Refrensi
Shares

Filed Under: Uncategorized Tagged With: Linux, Programming, Taukah Kamu ?

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Popular Post

Bruteforce FTP Login dengan Metasploit Module FTP Authentication Scanner

WordPress Fraction Theme Version 1.1.1 Privilege Escalation

Azure Traffic Manager Custom Domain or Subdomain Takeover

Uptimerobot.com Custom Domain or Subdomain Takeover

Tool Deface Opencart Bruteforce and Upload Image

Cara Deface dengan Exploit Slims CMS Senayan Arbitrary File Upload Vulnerability

MyBB 1.8.x SQL Injection Auto Exploit

Exploit Drupal Core 7.x Auto SQL Injection dan Upload Shell

Upload Backdoor Lewat MySQL Database (phpMyAdmin)

Shopify Custom Domain or Subdomain Takeover

LinuxSec / 82 queries in 0.24 seconds