Projects STRLCPY hiphp Commits 32746cfa
🤬
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■ ■
    Dockerfile
    1  -# code by : yasserbdj96
    2  -# email : [email protected]
     1 +# | |
     2 +# --+----------------------------------------------------------+--
     3 +# | Code by : yasserbdj96 |
     4 +# | Email : [email protected] |
     5 +# | Github : https://github.com/yasserbdj96 |
     6 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     7 +# --+----------------------------------------------------------+--
     8 +# | all posts #yasserbdj96 ,all views my own. |
     9 +# --+----------------------------------------------------------+--
     10 +# | |
    3 11   
    4 12  ######## local build & run:
    5 13  # docker build -t hiphp:latest .
    skipped 26 lines
  • ■ ■ ■ ■ ■ ■
    README.md
    skipped 143 lines
    144 144  <h2>Changelog History:</h2>
    145 145   
    146 146  ```
     147 +## 0.2.19 [30-07-2022]
     148 + - Preparing for the new version.
     149 + - Rework the software rights with the addition of the Bitcoin wallet address.
     150 + - new logo design.
     151 + - Bug fixes & performance improvements.
     152 + 
    147 153  ## 0.2.18 [06-07-2022]
    148 154   - Bug fixes & performance improvements.
    149 155   
    skipped 83 lines
  • ■ ■ ■ ■ ■
    examples/examples.php
    1 1  <?php
    2  - # code by : yasserbdj96
    3  - # email : [email protected]
     2 +# | |
     3 +# --+----------------------------------------------------------+--
     4 +# | Code by : yasserbdj96 |
     5 +# | Email : [email protected] |
     6 +# | Github : https://github.com/yasserbdj96 |
     7 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     8 +# --+----------------------------------------------------------+--
     9 +# | all posts #yasserbdj96 ,all views my own. |
     10 +# --+----------------------------------------------------------+--
     11 +# | |
    4 12   
    5 13   #START{
    6 14   // variables check:
    skipped 8 lines
  • ■ ■ ■ ■ ■
    examples/examples.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13  
    6 14  #START{
    7 15  from hiphp import *
    skipped 27 lines
  • ■ ■ ■ ■ ■
    examples/get_info.php
    1 1  <?php
    2  - # code by : yasserbdj96
    3  - # email : [email protected]
     2 +# | |
     3 +# --+----------------------------------------------------------+--
     4 +# | Code by : yasserbdj96 |
     5 +# | Email : [email protected] |
     6 +# | Github : https://github.com/yasserbdj96 |
     7 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     8 +# --+----------------------------------------------------------+--
     9 +# | all posts #yasserbdj96 ,all views my own. |
     10 +# --+----------------------------------------------------------+--
     11 +# | |
    4 12   
    5 13   #START{
    6 14   header('Content-type: text/plain');
    skipped 32 lines
  • ■ ■ ■ ■ ■
    hiphp/__init__.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13  
    6 14  #START{
    7 15  from hiphp.hiphpcoding import rot13,tobase64,tomd5
    skipped 48 lines
    56 64  {spas}║ ║ ═╦═ ▀█████████▀ ▀▀███▀▀▀▀███▀ ▀█████████▀
    57 65  {spas}╠═══╣ ║ ███ ███ ███ ███
    58 66  {spas}║ ║ ║ ███ ███ ███ ███
    59  -{spas}╩ ╩ ═╩═ ▄████▀ ███ █▀ ▄████▀ V0.2.18\n""",self.c_red)
     67 +{spas}╩ ╩ ═╩═ ▄████▀ ███ █▀ ▄████▀ V0.2.19\n""",self.c_red)
    60 68   logo+=self.color.c(" "*37+"Code by -> ",self.c_yellow)+self.color.c("yasserbdj96\n",self.c_green)
    61 69   logo+=self.color.c("\n - You are now connected safety. You can print the PHP commands below for comprehensive control of the site.\n",self.c_blue)
    62 70   logo+=self.color.c(" - If you are having difficulties controlling the program, you can type '--help' for more informations.\n",self.c_yellow)
    skipped 179 lines
  • ■ ■ ■ ■ ■
    hiphp/hiphpcoding.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  import base64
    skipped 16 lines
  • ■ ■ ■ ■ ■
    hiphp/hiphphelp.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  def help():
    skipped 41 lines
  • ■ ■ ■ ■ ■
    hiphp/hiphpmsgs.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  emsg_1="We were unable to recognize the hiphp identifier."
    skipped 7 lines
  • ■ ■ ■ ■ ■
    hiphp/hiphpphpfunctions.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  #
    skipped 43 lines
  • ■ ■ ■ ■ ■
    install/hiphp.desktop
    1  -# code by : yasserbdj96
    2  -# email : [email protected]
     1 +# | |
     2 +# --+----------------------------------------------------------+--
     3 +# | Code by : yasserbdj96 |
     4 +# | Email : [email protected] |
     5 +# | Github : https://github.com/yasserbdj96 |
     6 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     7 +# --+----------------------------------------------------------+--
     8 +# | all posts #yasserbdj96 ,all views my own. |
     9 +# --+----------------------------------------------------------+--
     10 +# | |
    3 11   
    4 12  #START{
    5 13  [Desktop Entry]
    skipped 12 lines
  • install/hiphp.png
  • ■ ■ ■ ■ ■
    install/hiphp.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13  
    6 14  #START{
    7 15  from hiphp import *
    skipped 25 lines
  • ■ ■ ■ ■ ■
    install/hiphp.sh
    1 1  #!/bin/bash
    2  -# code by : yasserbdj96
    3  -# email : [email protected]
     2 +# | |
     3 +# --+----------------------------------------------------------+--
     4 +# | Code by : yasserbdj96 |
     5 +# | Email : [email protected] |
     6 +# | Github : https://github.com/yasserbdj96 |
     7 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     8 +# --+----------------------------------------------------------+--
     9 +# | all posts #yasserbdj96 ,all views my own. |
     10 +# --+----------------------------------------------------------+--
     11 +# | |
    4 12   
    5 13  #START{
    6 14  #help:
    skipped 30 lines
  • ■ ■ ■ ■ ■
    install/install.sh
    1 1  #!/bin/bash
    2  -# code by : yasserbdj96
    3  -# email : [email protected]
     2 +# | |
     3 +# --+----------------------------------------------------------+--
     4 +# | Code by : yasserbdj96 |
     5 +# | Email : [email protected] |
     6 +# | Github : https://github.com/yasserbdj96 |
     7 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     8 +# --+----------------------------------------------------------+--
     9 +# | all posts #yasserbdj96 ,all views my own. |
     10 +# --+----------------------------------------------------------+--
     11 +# | |
    4 12   
    5 13  #START{
    6 14  # app name:
    skipped 36 lines
  • ■ ■ ■ ■ ■
    run.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  from hiphp import *
    skipped 24 lines
  • screenshot/screenshot.png
  • screenshot/screenshot1.png
  • screenshot/screenshot2.png
  • ■ ■ ■ ■ ■
    scripts/hiphp_desktop/main.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15  import eel
    skipped 68 lines
  • scripts/hiphp_desktop/screenshot/screenshot.png
  • scripts/hiphp_desktop/screenshot/screenshot1.png
  • scripts/hiphp_desktop/src/favicon.ico
  • scripts/hiphp_desktop/src/hiphp_logo.png
  • ■ ■ ■ ■ ■
    scripts/hiphp_desktop/src/php.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13   
    6 14  #START{
    7 15   
    skipped 94 lines
  • ■ ■ ■ ■ ■
    scripts/hiphp_desktop/src/script.js
    1  -// code by : yasserbdj96
    2  -// email : [email protected]
     1 +// | |
     2 +// --+----------------------------------------------------------+--
     3 +// | Code by : yasserbdj96 |
     4 +// | Email : [email protected] |
     5 +// | Github : https://github.com/yasserbdj96 |
     6 +// | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     7 +// --+----------------------------------------------------------+--
     8 +// | all posts #yasserbdj96 ,all views my own. |
     9 +// --+----------------------------------------------------------+--
     10 +// | |
    3 11   
    4 12  //START{
    5 13  var originalTitle=document.title;
    skipped 172 lines
  • ■ ■ ■ ■ ■
    scripts/hiphp_desktop/src/style.css
    1  -/* code by : yasserbdj96 */
    2  -/* email : [email protected] */
     1 +/*
     2 + | |
     3 + --+----------------------------------------------------------+--
     4 + | Code by : yasserbdj96 |
     5 + | Email : [email protected] |
     6 + | Github : https://github.com/yasserbdj96 |
     7 + | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     8 + --+----------------------------------------------------------+--
     9 + | all posts #yasserbdj96 ,all views my own. |
     10 + --+----------------------------------------------------------+--
     11 + | |
     12 +*/
    3 13   
    4 14  /*START{*/
    5 15  * {
    skipped 141 lines
  • scripts/hiphp_ftp/favicon.png
  • ■ ■ ■ ■ ■
    scripts/hiphp_ftp/main.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13  
    6 14  #START{
    7 15  import os
    skipped 204 lines
  • scripts/hiphp_ftp/screenshot/screenshot.png
  • ■ ■ ■ ■ ■
    setup.py
    1 1  #!/usr/bin/env python
    2 2  # coding:utf-8
    3  -# code by : yasserbdj96
    4  -# email : [email protected]
     3 +# | |
     4 +# --+----------------------------------------------------------+--
     5 +# | Code by : yasserbdj96 |
     6 +# | Email : [email protected] |
     7 +# | Github : https://github.com/yasserbdj96 |
     8 +# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
     9 +# --+----------------------------------------------------------+--
     10 +# | all posts #yasserbdj96 ,all views my own. |
     11 +# --+----------------------------------------------------------+--
     12 +# | |
    5 13  
    6 14  #START{
    7 15  from setuptools import setup,find_packages
    8 16  setup(
    9 17   name="hiphp",
    10  - version="0.2.18",
     18 + version="0.2.19",
    11 19   author="yasserbdj96",
    12 20   author_email="[email protected]",
    13 21   description='''hiphp is BackDoor to control php-based sites hiphp can be controlled by sending commands, files, and tokens to the site using the http/https protocol. After copying the code and placing it in any php file on the target website, you will have permissions to enter it, read all files, delete and even upload new files to it. Also, this back door is password protected.''',
    skipped 26 lines
  • ■ ■ ■ ■
    version.txt
    1  -0.2.18
     1 +0.2.19
    2 2   
Please wait...
Page is in error, reload to recover