SPECIAL New smarter pro 1.1 Netflix style

Havic2u

Active member
VIP Member
Joined
Apr 15, 2021
Messages
303
Awards
3
Offline
This is the edit in the apk I have which isnt from here but should be the same. 1708707832778.png
 

tribest

Member
Joined
Dec 16, 2023
Messages
33
Awards
2
Offline
this i have it

# virtual methods
.method public final apn()Ljava/lang/String;
 .locals 1
 .annotation build Lorg/jetbrains/annotations/NotNull;
 .end annotation

 const-string v0, "U21hcnRlcnMgUHJv"



but the strange things some vod play and some vod not no idea what depends i use nextv or other app works great all
 

Havic2u

Active member
VIP Member
Joined
Apr 15, 2021
Messages
303
Awards
3
Offline
That's not the base64 for your app that is the place it is located. You have to create the base64 for your app name then put it in that place.

The base64 in the picture = app name Smarters Pro Once this i corrected the VOD issues i had seen went away.
Not saying that is the case for all but it corrected 3 different versions of the app I had sent out.
 

getelbr

Well-known member
Joined
Oct 13, 2021
Messages
103
Awards
4
Offline
How can I decrypt this in api/index.php
function part1($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'UnNLaXZEdW9lUmdIeFMxOA==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

function part2($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'ODFTeEhnUmVvdUR2aUtzUg==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

Reason: BOXBR disconnected the domain and the apps no longer work. Besides, some of their panels put viruses inside the hosting
 

SamChapman

Active member
VIP Member
Joined
Jan 18, 2024
Messages
160
Awards
2
Offline
How can I decrypt this in api/index.php
function part1($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'UnNLaXZEdW9lUmdIeFMxOA==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

function part2($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'ODFTeEhnUmVvdUR2aUtzUg==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

Reason: BOXBR disconnected the domain and the apps no longer work. Besides, some of their panels put viruses inside the hosting
What makes you think this is connected to box br?
 

getelbr

Well-known member
Joined
Oct 13, 2021
Messages
103
Awards
4
Offline
Because it is encrypted, there may be a hidden URL that redirects somewhere or inserts a malicious file
I'm not saying it's BOXBR. And I cannot say that the code is malicious. I just asked to leave it open so we can be sure it won't be a problem in the future.
 

FelixSchrodinger

Well-known member
Joined
Jun 17, 2022
Messages
256
Awards
3
Offline
yes movies and series wont load , app is not possible to be used

Try changing your user agent in the app. Ive noticed VOD servers blocking IPTVSmartersPlayer user agent being blocked previously....

Can't change it to anything and it just work but one that I know works:

"PuraKura Play"
 

FelixSchrodinger

Well-known member
Joined
Jun 17, 2022
Messages
256
Awards
3
Offline
this i have it

# virtual methods
.method public final apn()Ljava/lang/String;
 .locals 1
 .annotation build Lorg/jetbrains/annotations/NotNull;
 .end annotation

 const-string v0, "U21hcnRlcnMgUHJv"



but the strange things some vod play and some vod not no idea what depends i use nextv or other app works great all

Last-ditch attempt. Try change player to software encoding (dont try 4K though) if user agent doesnt fix, did this?
 

getelbr

Well-known member
Joined
Oct 13, 2021
Messages
103
Awards
4
Offline
How can I decrypt this in api/index.php
function part1($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'UnNLaXZEdW9lUmdIeFMxOA==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

function part2($plaintext) {
if ($plaintext == null) {
return null;
}

$f2hg79IE6Y1A6yJzVe2d = 'ODFTeEhnUmVvdUR2aUtzUg==';
$zMjVfb7PNtffh4E62MRK = base64_decode($f2hg79IE6Y1A6yJzVe2d, true);
$salt = substr($zMjVfb7PNtffh4E62MRK, 0, 16);
$iv = 'tbDX3QvEUZW6gS5M';

try {
$cipherMethod = "AES-128-CBC";
$encrypted = openssl_encrypt($plaintext, $cipherMethod, $salt, OPENSSL_RAW_DATA, $iv);
return base64_encode($encrypted);
} catch (Exception $e) {
echo $e->getMessage();
return null;
}
}

Reason: BOXBR disconnected the domain and the apps no longer work. Besides, some of their panels put viruses inside the hosting
any answer
 

hunt

Active member
Joined
Jul 25, 2021
Messages
218
Awards
3
Offline
Anyone have problems with movies vod?
Play regular live TV and series
But movie don t start, we try with few different servers
 
Last edited:
Top