What's new
  • The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked! For more information about rules, limits, and more, visit the Help page.
    Found a dead link? Use the report button!
Reward App Lucky Spin + Start App ads + Adcolony Android

Reward App Lucky Spin + Start App ads + Adcolony Android 5.7

raz0r

owner
Staff member
Administrator
Moderator
Member
Messages
30,560
Files
7107
Reactions
112,467
raz0r submitted a new resource:

Reward App Lucky Spin + Start App ads + Adcolony - Reward App Lucky Spin + Start App ads + Adcolony (Codecanyon Item ID: 27545226)

View attachment 5955

Android Reward App + Api Offers is a best app fro user who want to earn cash. there many option for earn cash user can earn cash via download app + invite friend also earn with watch video earn simple app beautiful interface with admin panel

You Can Easily Change logo app name , color etc and setup admin panel.
Daily Check-In – Keeps users coming back to earn. You can set the amount from admin panel

✔️Ad-Networks
• Google Admob
• Facebook...

Read more about this resource...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: fmchawki
raz0r updated Reward App Lucky Spin + Start App ads + Adcolony Android with a new update entry:

Reward App v5.7 Lucky Spin + Start App ads + Adcolony Android

Change Log v 5.7 – 11 March 2023

Added : UI Updated
Added : Google Login Added
Added : Scratch Card Added
Added : LeaderBoard Updated
Added : App Improvement
Added : Multiple Admin Option Added
Added : Security Updated
Added : VPN Protection Added
Fixed : Bug Fixed
Fixed : App Optimized
Fixed : Admin Panel Optimized
Fixed : Removed Mandatory Email Verification on Invite Section

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: hiitsjb1 and fmchawki
Change Log v 6.0– 02 Jun 2024 - UNTOUCHED

Added : HotOffer Added
Added : CpxRsearch / Earnetize offerwall Added
Fixed : New UI Style 7 added with LottieAnimation
Added : Home Screen Merged from 2 to 3 Section [ Top Picks, Offers, Playzone]
Added : UI Improved [ withdraw screen, redeem alert box]
Added : Users Analysis Chart Added in Admin Panel
Added : Now If admin Approve/Reject any payment request + Hot offer, the user will get InApp Message;
Added : Arabic Language Added
Added : Input Placeholder and Input Type option added in Redeem Option in Admin panel
Added : OneSignal Notification Added
Fixed : App Optimized
Fixed : Sdk are Updated
Removed : Firebase Notification Removed
Removed : App language translate from admin panel removed
Removed : Applovin -Adcolony adapter removed + Adcolony Sdk Removed
 
Reacted by:
V 6.2-Someone make it nulled please
Download from Here


v 6.2– 17 June 2025Added : Adblocker Added
Added : Dynamic Ad Priority Option Added [admin can change ad network order from admin]
Added : New Ads Network Added Inmobi, Vungle, UnityLevelPlay
Added : updated to 35 sdk version
Fixed : App Optimized
Fixed : Ui changes related to playstore
Fixed : All Sdk updated
Fixed : Admin Panel Optimized

File courtesy by Aabaz.com
 
Last edited:
Reacted by:
you asked for a null. the only enforcement is in the admin panel. you'd want to change:

vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php
The code was checking for a licensing cookie axx and, if missing, making a hidden outbound curl request to techappinnovation.gitbook.io to verify the installation. If the server returned false, it would redirect the admin to a "licensing" page. So.. you can force that variable to 'true' instead of null, or just delete that part of the code. (the part that looks all obfuscated and has multiple nested base64_decode() calls)

vendor/jenssegers/agent/src/Agent.php
This has the isNotProxy() function which you might as well return true for since this is in the admin panel it is a fake misleading name that has nothing to do with proxy checking it is just being used to verify the user against api.techappinnovation.com. Just add a "return true;" at the top of that function.

app/Http/Controllers/Api/UserController.php
Here there is a bug not really related to null but would have locked users out of changing their passwords because they compare raw input to a salted hash using == so in update_profile_pass() change the if from:
Code:
if($user->password == Hash::make($req['oldp'])){
to
Code:
if (Hash::check($req['oldp'], $user->password)) {

I didn't test these changes but they should work. (sorry testing a android app thing with control panel is way beyond what i can easily test, i just looked at the source code). good luck!
 
Reacted by:
  • Like
Reactions: shahin33bd
Top