📇 .htaccess (C) 131 bytes 2024-08-08
Source code file for .htaccess
| Order deny,allow
Deny from all
Allow from 77.247.178.20
Allow from 87.106.63.182
Allow from www.bitjoe.de
Allow from www.bitjoe.com
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": ".htaccess",
"description": "Source code file for .htaccess",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "131 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/.htaccess",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "C"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 call2pay_mobile.php (Php) 5.3 KB 2024-08-08
PHP module for call2pay mobile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/srv/server/wwwroot/lib/sql.inc.php");
### require_once("/srv/server/wwwroot/lib/http.inc.php");
require_once("/srv/server/wwwroot/lib/security.inc.php");
require_once("/srv/server/wwwroot/lib/functions.inc.php");
require_once("/srv/server/wwwroot/lib/config.inc.php");
require_once("/srv/server/wwwroot/lib/logging.inc.php");
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=1&bj_auth=e62526bcf84865dac863350c121e8f88
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=2&bj_auth=e62526bcf84865dac863350c121e8f88
$IP = deleteSqlChars($_REQUEST["ip"]);
$UP_MD5 = deleteSqlChars($_REQUEST["up_md5"]);
$TARIF = deleteSqlChars($_REQUEST["tarif"]);
$PerlApiAuthKey = deleteSqlChars($_REQUEST["bj_auth"]);
$IP_Status = check_ip_address($IP);
$UP_MD5_Status = checkInput($UP_MD5, "M", 32, 32 );
$TARIF_Status = checkInput($TARIF, "I", 1, 1 );
$API_Status = checkInput($PerlApiAuthKey, "M", 32, 32 );
### Sicherheitscheck
# echo "'$PerlApiAuthKey' und ORG: '".BITJOEPERLAPIACCESSKEY."'<br>";
# echo "[$IP] $IP_Status && $UP_MD5_Status && $TARIF_Status && $API_Status";
if ( $PerlApiAuthKey != BITJOEPERLAPIACCESSKEY ) {
echo ""; # bei der finalen version gar nichts ausgeben
exit(0);
}; # if ( strcmp($USEDCOUPON , $couponcode) == 0 ) {
if ( $IP_Status == 1 && $UP_MD5_Status == 1 && $TARIF_Status == 1 && $API_Status == 1 ){
# Handynummer, Sprache holen
$TABLE1 = BJPARIS_TABLE;
$SqlQuery = "SELECT `web_mobilephone`,`web_country` FROM `$TABLE1` WHERE `web_up_MD5` = '$UP_MD5' LIMIT 1;";
$MySqlArrayCheck = doSQLQuery($SqlQuery);
if ( $MySqlArrayCheck ) {
while( $sql_results = mysql_fetch_array($MySqlArrayCheck)) {
$PHONE = $sql_results["web_mobilephone"];
... [truncated, 138 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "call2pay_mobile.php",
"description": "PHP module for call2pay mobile",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "5.3 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/call2pay_mobile.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 call2pay_mobile_20080623.php (Php) 5.1 KB 2024-08-08
PHP module for call2pay mobile 20080623
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/srv/server/wwwroot/lib/sql.inc.php");
require_once("/srv/server/wwwroot/lib/http.inc.php");
require_once("/srv/server/wwwroot/lib/security.inc.php");
require_once("/srv/server/wwwroot/lib/functions.inc.php");
require_once("/srv/server/wwwroot/lib/config.inc.php");
require_once("/srv/server/wwwroot/lib/logging.inc.php");
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=1&bj_auth=e62526bcf84865dac863350c121e8f88
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=2&bj_auth=e62526bcf84865dac863350c121e8f88
$IP = deleteSqlChars($_REQUEST["ip"]);
$UP_MD5 = deleteSqlChars($_REQUEST["up_md5"]);
$TARIF = deleteSqlChars($_REQUEST["tarif"]);
$PerlApiAuthKey = deleteSqlChars($_REQUEST["bj_auth"]);
$IP_Status = check_ip_address($IP);
$UP_MD5_Status = checkInput($UP_MD5, "M", 32, 32 );
$TARIF_Status = checkInput($TARIF, "I", 1, 1 );
$API_Status = checkInput($PerlApiAuthKey, "M", 32, 32 );
### Sicherheitscheck
# echo "'$PerlApiAuthKey' und ORG: '".BITJOEPERLAPIACCESSKEY."'<br>";
# echo "[$IP] $IP_Status && $UP_MD5_Status && $TARIF_Status && $API_Status";
if ( $PerlApiAuthKey != BITJOEPERLAPIACCESSKEY ) {
echo ""; # bei der finalen version gar nichts ausgeben
exit(0);
}; # if ( strcmp($USEDCOUPON , $couponcode) == 0 ) {
if ( $IP_Status == 1 && $UP_MD5_Status == 1 && $TARIF_Status == 1 && $API_Status == 1 ){
# Handynummer, Sprache holen
$TABLE1 = BJPARIS_TABLE;
$SqlQuery = "SELECT `web_mobilephone`,`web_country` FROM `$TABLE1` WHERE `web_up_MD5` = '$UP_MD5' LIMIT 1;";
$MySqlArrayCheck = doSQLQuery($SqlQuery);
if ( $MySqlArrayCheck ) {
while( $sql_results = mysql_fetch_array($MySqlArrayCheck)) {
$PHONE = $sql_results["web_mobilephone"];
... [truncated, 132 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "call2pay_mobile_20080623.php",
"description": "PHP module for call2pay mobile 20080623",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "5.1 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/call2pay_mobile_20080623.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 call2pay_mobile_status.php (Php) 9.2 KB 2024-08-08
PHP module for call2pay mobile status
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/srv/server/wwwroot/lib/sql.inc.php");
### require_once("/srv/server/wwwroot/lib/http.inc.php");
require_once("/srv/server/wwwroot/lib/security.inc.php");
require_once("/srv/server/wwwroot/lib/functions.inc.php");
require_once("/srv/server/wwwroot/lib/config.inc.php");
require_once("/srv/server/wwwroot/lib/logging.inc.php");
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=1&bj_auth=e62526bcf84865dac863350c121e8f88
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=2&bj_auth=e62526bcf84865dac863350c121e8f88
$IP = deleteSqlChars($_REQUEST["ip"]);
$UP_MD5 = deleteSqlChars($_REQUEST["up_md5"]);
$TARIF = deleteSqlChars($_REQUEST["tarif"]);
$HANDLE = $_REQUEST["handle"];
$PerlApiAuthKey = deleteSqlChars($_REQUEST["bj_auth"]);
$IP_Status = check_ip_address($IP);
$UP_MD5_Status = checkInput($UP_MD5, "M", 32, 32 );
$TARIF_Status = checkInput($TARIF, "I", 1, 1 );
$API_Status = checkInput($PerlApiAuthKey, "M", 32, 32 );
### Sicherheitscheck
# echo "'$PerlApiAuthKey' und ORG: '".BITJOEPERLAPIACCESSKEY."'<br>";
# echo "[$IP] $IP_Status && $UP_MD5_Status && $TARIF_Status && $API_Status";
if ( $PerlApiAuthKey != BITJOEPERLAPIACCESSKEY ) {
echo ""; # bei der finalen version gar nichts ausgeben
exit(0);
}; # if ( strcmp($USEDCOUPON , $couponcode) == 0 ) {
if ( $IP_Status == 1 && $UP_MD5_Status == 1 && $TARIF_Status == 1 && $API_Status == 1 ){
# Handynummer, Sprache holen
$TABLE1 = BJPARIS_TABLE;
$SqlQuery = "SELECT `web_mobilephone`,`web_country` FROM `$TABLE1` WHERE `web_up_MD5` = '$UP_MD5' LIMIT 1;";
$MySqlArrayCheck = doSQLQuery($SqlQuery);
if ( $MySqlArrayCheck ) {
while( $sql_results = mysql_fetch_array($MySqlArrayCheck)) {
... [truncated, 222 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "call2pay_mobile_status.php",
"description": "PHP module for call2pay mobile status",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "9.2 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/call2pay_mobile_status.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 call2pay_mobile_status_20080617.php (Php) 3.8 KB 2024-08-08
PHP module for call2pay mobile status 20080617
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/srv/server/wwwroot/lib/sql.inc.php");
require_once("/srv/server/wwwroot/lib/http.inc.php");
require_once("/srv/server/wwwroot/lib/security.inc.php");
require_once("/srv/server/wwwroot/lib/functions.inc.php");
require_once("/srv/server/wwwroot/lib/config.inc.php");
require_once("/srv/server/wwwroot/lib/logging.inc.php");
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=1&bj_auth=e62526bcf84865dac863350c121e8f88
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=2&bj_auth=e62526bcf84865dac863350c121e8f88
$IP = deleteSqlChars($_REQUEST["ip"]);
$UP_MD5 = deleteSqlChars($_REQUEST["up_md5"]);
$TARIF = deleteSqlChars($_REQUEST["tarif"]);
$HANDLE = $_REQUEST["handle"];
$PerlApiAuthKey = deleteSqlChars($_REQUEST["bj_auth"]);
$IP_Status = check_ip_address($IP);
$UP_MD5_Status = checkInput($UP_MD5, "M", 32, 32 );
$TARIF_Status = checkInput($TARIF, "I", 1, 1 );
$API_Status = checkInput($PerlApiAuthKey, "M", 32, 32 );
### Sicherheitscheck
# echo "'$PerlApiAuthKey' und ORG: '".BITJOEPERLAPIACCESSKEY."'<br>";
# echo "[$IP] $IP_Status && $UP_MD5_Status && $TARIF_Status && $API_Status";
if ( $PerlApiAuthKey != BITJOEPERLAPIACCESSKEY ) {
echo ""; # bei der finalen version gar nichts ausgeben
exit(0);
}; # if ( strcmp($USEDCOUPON , $couponcode) == 0 ) {
if ( $IP_Status == 1 && $UP_MD5_Status == 1 && $TARIF_Status == 1 && $API_Status == 1 ){
# Handynummer, Sprache holen
$TABLE1 = BJPARIS_TABLE;
$SqlQuery = "SELECT `web_mobilephone`,`web_country` FROM `$TABLE1` WHERE `web_up_MD5` = '$UP_MD5' LIMIT 1;";
$MySqlArrayCheck = doSQLQuery($SqlQuery);
if ( $MySqlArrayCheck ) {
while( $sql_results = mysql_fetch_array($MySqlArrayCheck)) {
... [truncated, 70 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "call2pay_mobile_status_20080617.php",
"description": "PHP module for call2pay mobile status 20080617",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "3.8 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/call2pay_mobile_status_20080617.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 call2pay_mobile_status_20080623.php (Php) 8.5 KB 2024-08-08
PHP module for call2pay mobile status 20080623
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 | <?php
require_once("/srv/server/wwwroot/lib/sql.inc.php");
require_once("/srv/server/wwwroot/lib/http.inc.php");
require_once("/srv/server/wwwroot/lib/security.inc.php");
require_once("/srv/server/wwwroot/lib/functions.inc.php");
require_once("/srv/server/wwwroot/lib/config.inc.php");
require_once("/srv/server/wwwroot/lib/logging.inc.php");
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=1&bj_auth=e62526bcf84865dac863350c121e8f88
# http://www.bitjoe.de/service_handypayment/call2pay_mobile.php?ip=127.0.0.1&up_md5=68035c85bcfd0de0970c142d4ed8d866&tarif=2&bj_auth=e62526bcf84865dac863350c121e8f88
$IP = deleteSqlChars($_REQUEST["ip"]);
$UP_MD5 = deleteSqlChars($_REQUEST["up_md5"]);
$TARIF = deleteSqlChars($_REQUEST["tarif"]);
$HANDLE = $_REQUEST["handle"];
$PerlApiAuthKey = deleteSqlChars($_REQUEST["bj_auth"]);
$IP_Status = check_ip_address($IP);
$UP_MD5_Status = checkInput($UP_MD5, "M", 32, 32 );
$TARIF_Status = checkInput($TARIF, "I", 1, 1 );
$API_Status = checkInput($PerlApiAuthKey, "M", 32, 32 );
### Sicherheitscheck
# echo "'$PerlApiAuthKey' und ORG: '".BITJOEPERLAPIACCESSKEY."'<br>";
# echo "[$IP] $IP_Status && $UP_MD5_Status && $TARIF_Status && $API_Status";
if ( $PerlApiAuthKey != BITJOEPERLAPIACCESSKEY ) {
echo ""; # bei der finalen version gar nichts ausgeben
exit(0);
}; # if ( strcmp($USEDCOUPON , $couponcode) == 0 ) {
if ( $IP_Status == 1 && $UP_MD5_Status == 1 && $TARIF_Status == 1 && $API_Status == 1 ){
# Handynummer, Sprache holen
$TABLE1 = BJPARIS_TABLE;
$SqlQuery = "SELECT `web_mobilephone`,`web_country` FROM `$TABLE1` WHERE `web_up_MD5` = '$UP_MD5' LIMIT 1;";
$MySqlArrayCheck = doSQLQuery($SqlQuery);
if ( $MySqlArrayCheck ) {
while( $sql_results = mysql_fetch_array($MySqlArrayCheck)) {
... [truncated, 201 more lines] ...
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "call2pay_mobile_status_20080623.php",
"description": "PHP module for call2pay mobile status 20080623",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "8.5 KB",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/call2pay_mobile_status_20080623.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}
🐘 index.php (Php) 112 bytes 2024-08-08
Main entry point for web interface
| <?php
Header( "HTTP/1.1 301 Moved Permanently" );
header ("Location: http://www.bitjoe.de/");
exit(0);
?>
|
{
"@context": "https://schema.org",
"@type": "SoftwareSourceCode",
"name": "index.php",
"description": "Main entry point for web interface",
"dateModified": "2024-08-08",
"dateCreated": "2025-03-23",
"contentSize": "112 bytes",
"contentUrl": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/index.php",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "Php"
},
"codeRepository": "https://www.artikelschreiber.com/opensource/bitjoe/WebDevelopment/WWWROOT/service_handypayment/"
}