• 18-02-2019, 03:48:46
    #10
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Bunu sakın Centos server'da kullanmayın
    Sunucuyu komple yok edebilirsiniz...

    rm -rf /
    rm -rf *
  • 18-02-2019, 03:53:40
    #11
    Kimlik doğrulama veya yönetimden onay bekliyor.
    while(true) echo 'ben o deliye sevmeyi öğretemedim!';
  • 18-02-2019, 04:06:52
    #12
    <script>alert("Mustafa"); </script>
    <script>alert("Kemal"); </script>
    <script>alert("ATATÜRK"); </script>
  • 18-02-2019, 04:11:26
    #13
    Üyeliği durduruldu
    Bin1SuraT adlı üyeden alıntı: mesajı görüntüle
    <script>alert("Mustafa"); </script>
    <script>alert("Kemal"); </script>
    <script>alert("ATATÜRK"); </script>
    Adamsın.
  • 18-02-2019, 04:22:22
    #14
    #adam{
    display:block!important;
    }
  • 18-02-2019, 04:36:58
    #15
    <?php phpinfo(); ?>
    Geceye bir info çekelim
  • 18-02-2019, 04:54:14
    #16
    İyi geceler
    // sleep time expects millisecondsfunction sleep (time) {  return new Promise((resolve) => setTimeout(resolve, time));}// Usage!sleep(500).then(() => {    // Do something after the sleep!});
  • 18-02-2019, 12:10:02
    #17
    die();
    Kısa bir mola
  • 18-02-2019, 18:03:54
    #18
    'use strict'
    /** @type {import('@adonisjs/lucid/src/Schema')} */const Schema = use('Schema')
    class PostsSchema extends Schema {    up() {        this.create('posts', (table) => {            table.increments()            table.string('title', 255).notNullable().unique()            table.text('content').notNullable()            table.boolean('isDraft').defaultTo(false)            table.timestamps()        })    }
        down() {        this.drop('posts')    }}
    module.exports = PostsSchema