shell bypass 403

GrazzMean Shell

Uname: Linux web3.us.cloudlogin.co 5.10.226-xeon-hst #2 SMP Fri Sep 13 12:28:44 UTC 2024 x86_64
Software: Apache
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.210.96.117
Your Ip: 18.116.27.43
User: edustar (269686) | Group: tty (888)
Safe Mode: OFF
Disable Function:
NONE

name : this_can_not_be_null.diff
From 50aa7356e3c750fadb6665508e66d2f6923c7529 Mon Sep 17 00:00:00 2001
From: Yorick Peterse <yorickpeterse@gmail.com>
Date: Sat, 28 Mar 2015 14:17:27 +0100
Subject: [PATCH] "this" can not be null

Per clang 3.6 checking if "this" is null or not results in a compiler
error.
---
 vm/oop.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vm/oop.hpp b/vm/oop.hpp
index 1c55b71..8298f04 100644
--- a/vm/oop.hpp
+++ b/vm/oop.hpp
@@ -610,7 +610,7 @@ Object* const cUndef = reinterpret_cast<Object*>(0x22L);
     }
 
     void validate() const {
-      assert(this && (!reference_p() || (type_id() > InvalidType && type_id() < LastObjectType)));
+      assert(!reference_p() || (type_id() > InvalidType && type_id() < LastObjectType));
     }
 
     friend class TypeInfo;
-- 
2.3.5

© 2025 GrazzMean