!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/fs/ntfs/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     dir.h (1.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * dir.h - Header file for dir.c
 *
 * Copyright (C) 1997 Régis Duchesne
 */
#define ITERATE_SPLIT_DONE      1

enum ntfs_iterate_e {
    BY_POSITION,
    BY_NAME,
    DIR_INSERT
};

/* not all fields are used for all operations */
typedef struct ntfs_iterate_s {
    enum ntfs_iterate_e type;
    ntfs_inode *dir;
    union{
        ntfs_u64 pos;
        int flags;
    }u;
    char *result;      /* pointer to entry if found */
    ntfs_u16* name;
    int namelen;
    int block;         /* current index record */
    int newblock;      /* index record created in a split */
    char *new_entry;
    int new_entry_size;
    /*ntfs_inode* new;*/
} ntfs_iterate_s;

int ntfs_getdir_unsorted(ntfs_inode *ino, ntfs_u32 *p_high, ntfs_u32* p_low,
             int (*cb)(ntfs_u8*, void*), void *param);

int ntfs_getdir_byname(ntfs_iterate_s *walk);

int ntfs_dir_add(ntfs_inode *dir, ntfs_inode *new, ntfs_attribute *name);

int ntfs_check_index_record(ntfs_inode *ino, char *record);

int ntfs_getdir_byposition(ntfs_iterate_s *walk);

int ntfs_mkdir(ntfs_inode* dir,const char* name,int namelen, ntfs_inode *ino);

int ntfs_split_indexroot(ntfs_inode *ino);

int ntfs_add_index_root(ntfs_inode *ino, int type);


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0157 ]--