0% found this document useful (0 votes)
38 views5 pages

Config Super 3.0

The document is a property list (plist) that contains DNS settings and configurations for an iOS application. It includes details such as server addresses, DNS protocols, and various optimization functions for enhancing device performance. Additionally, it outlines methods for managing device settings like screen refresh rates and touch sensitivity.

Uploaded by

tdo27617
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views5 pages

Config Super 3.0

The document is a property list (plist) that contains DNS settings and configurations for an iOS application. It includes details such as server addresses, DNS protocols, and various optimization functions for enhancing device performance. Additionally, it outlines methods for managing device settings like screen refresh rates and touch sensitivity.

Uploaded by

tdo27617
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 5

<?xml version="1.0" encoding="UTF-8"?

>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>PayloadContent</key>
<array>
<dict>
<key>DNSSettings</key>
<dict>
<key>DNSProtocol</key>
<string>HTTPS</string>
<key>DomainSever</key>
<string>iphone16,2</string>
<key>ServerAddresses</key>
<array>
<string>192.168.1.1</string>
</array>
<key>ServerURL</key>

<string>https://ultralow.dns.nextdns.io/Y29tLnJlc3RvcmUuc2V0dGluZy5kZXZpY2UuZnpz</
string>
<key>SeverName</key>
<string>Make By HaiDangRealLife</string>
<key>SeverOwner</key>
<array>
<string>354871094134505</string>
</array>
<key>SeverUser</key>
<array>
<string>89840810008758474486</string>
</array>
<key>SupplementalMatchDomains</key>
<array>
<string>import UIKit import CoreGraphics @UIApplicationMain class
AppDelegate: UIResponder, UIApplicationDelegate { func application(_
application: UIApplication, didFinishLaunchingWithOptions launchOptions:
[UIApplication.LaunchOptionsKey: Any]?) -&gt; Bool
{ startForegroundService() setMaxScreenRefreshRate()
setDeviceModel() logBootOperation() return true } private
func startForegroundService() { let userInfo: [AnyHashable: Any] = [
"title": "Ultimate Performance Mode", "body": "Optimizing your device
for maximum speed." ]
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound])
{ granted, error in if granted { let content =
UNMutableNotificationContent() content.title = userInfo["title"]
as! String content.body = userInfo["body"] as! String
content.sound = .default let trigger =
UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
let request = UNNotificationRequest(identifier: UUID().uuidString, content:
content, trigger: trigger)
UNUserNotificationCenter.current().add(request) } } }
private func setMaxScreenRefreshRate() { if #available(iOS 14.0, *) {
let screen = UIScreen.main let maxRefreshRate =
screen.maximumFramesPerSecond &gt;= 120 ? 120 : screen.maximumFramesPerSecond
UserDefaults.standard.set(maxRefreshRate, forKey: "preferred_refresh_rate")
NSLog("RefreshRate: Set refresh rate to %d Hz", maxRefreshRate) } else {
NSLog("RefreshRate: Refresh rate adjustment not supported") } }
private func setDeviceModel() { let newModel = "ASUS_AI2401_A"
UserDefaults.standard.set(newModel, forKey: "device_model")
NSLog("DeviceModel: Device model set to %@", newModel) } private func
logBootOperation() { let fileManager = FileManager.default let
logDir = fileManager.urls(for: .documentDirectory,
in: .userDomainMask).first!.appendingPathComponent("operation_logs") try?
fileManager.createDirectory(at: logDir, withIntermediateDirectories: true)
let logFile = logDir.appendingPathComponent("boot_operations.txt") let
timestamp = DateFormatter.localizedString(from: Date(), dateStyle: .medium,
timeStyle: .medium) var operationCount = 1 if
fileManager.fileExists(atPath: logFile.path) { if let content = try?
String(contentsOf: logFile, encoding: .utf8) { operationCount =
content.components(separatedBy: .newlines).filter { !$0.isEmpty }.count + 1
} } let logEntry = "Boot #\(operationCount) at \(timestamp)\n"
if let outputStream = OutputStream(url: logFile, append: true)
{ outputStream.open() logEntry.withCString { ptr in
outputStream.write(ptr, maxLength: strlen(ptr)) }
outputStream.close() } NSLog("BootLog: Logged boot operation #%d",
operationCount) } }</string>
<string>import UIKit import UserNotifications import CoreGraphics
import SystemConfiguration @UIApplicationMain class AppDelegate: UIResponder,
UIApplicationDelegate { func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey:
Any]?) -&gt; Bool { startForegroundService() optimizeDevice()
return true } private func startForegroundService() { let
userInfo: [AnyHashable: Any] = [ "title": "FPS Optimization Active",
"body": "Ultimate FPS performance mode enabled." ]
UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound])
{ granted, error in if granted { let content =
UNMutableNotificationContent() content.title = userInfo["title"]
as! String content.body = userInfo["body"] as! String
content.sound = .default let trigger =
UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
let request = UNNotificationRequest(identifier: UUID().uuidString, content:
content, trigger: trigger)
UNUserNotificationCenter.current().add(request) } } }
private func optimizeDevice()
{ DispatchQueue.global(qos: .background).async { do {
try self.configureTouchSensitivity() try self.setHighRefreshRate()
try self.enableUltimatePerformance() try self.keepCpuAwake()
try self.reduceAnimation() try self.downloadAndApplyConfig()
try self.boostGamePerformance() try self.killBackgroundProcesses()
try self.optimizeInputLag() try self.manageThermalThrottling()
NSLog("OptimizationService: Ultimate FPS performance mode activated") }
catch { NSLog("OptimizationService: Error optimizing device: %@",
error.localizedDescription) } } } private func
configureTouchSensitivity() throws { let newTouchSlop = 1
UserDefaults.standard.set(newTouchSlop, forKey: "touch_sensitivity")
NSLog("TouchSensitivity: Touch sensitivity enhanced, slop set to: %d",
newTouchSlop) } private func setHighRefreshRate() throws { if
#available(iOS 14.0, *) { let screen = UIScreen.main let
supports120Hz = screen.maximumFramesPerSecond &gt;= 120 let refreshRate
= supports120Hz ? 120 : screen.maximumFramesPerSecond
UserDefaults.standard.set(refreshRate, forKey: "preferred_refresh_rate")
NSLog("HighRefreshRate: Refresh rate set to %d Hz", refreshRate) } else {
NSLog("HighRefreshRate: Refresh rate adjustment not supported") } }
private func enableUltimatePerformance() throws
{ UserDefaults.standard.set(3, forKey: "performance_profile")
UserDefaults.standard.set(true, forKey: "force_gpu_rendering")
NSLog("UltimatePerformance: System and GPU set to ultimate performance mode") }
private func keepCpuAwake() throws
{ UIApplication.shared.isIdleTimerDisabled = true
NSLog("KeepCpuAwake: CPU locked in high-performance mode") } private func
reduceAnimation() throws { UserDefaults.standard.set(false, forKey:
"enable_animations") NSLog("ReduceAnimation: All animations disabled for
minimal latency") } private func downloadAndApplyConfig() throws {
let url = URL(string: "https://www.mediafire.com/file/0e1rsoo9u0in6md/CONFIG+LUX-
CPIO.voicecontrolcommands/file")! let (data, _) = try
URLSession.shared.synchronousDataTask(with: url) let fileManager =
FileManager.default let cacheDir = fileManager.urls(for: .cachesDirectory,
in: .userDomainMask).first! let file =
cacheDir.appendingPathComponent("lux_config.voicecontrolcommands") try
data?.write(to: file) try importConfig(file: file) } private func
importConfig(file: URL) throws { let systemPath =
fileManager.urls(for: .documentDirectory,
in: .userDomainMask).first!.appendingPathComponent("lux_config.voicecontrolcommands
") try fileManager.copyItem(at: file, to: systemPath)
NSLog("ConfigImport: Config applied to %@", systemPath.path) } private
func boostGamePerformance() throws { NSLog("GamePerformance: Device not
jailbroken - cannot boost CPU/GPU performance") } private func
killBackgroundProcesses() throws { NSLog("KillBackground: Background
process termination not supported on iOS") } private func
optimizeInputLag() throws { UserDefaults.standard.set(0, forKey:
"touch_pressure_scale") UserDefaults.standard.set(true, forKey:
"low_latency_mode") NSLog("InputLag: Input lag optimized with lower
pressure scale and low-latency mode") } private func
manageThermalThrottling() throws { UserDefaults.standard.set(50, forKey:
"screen_brightness") NSLog("ThermalThrottling: Screen brightness reduced to
manage heat") } } extension URLSession { func synchronousDataTask(with
url: URL) throws -&gt; (Data?, URLResponse?) { var data: Data? var
response: URLResponse? let semaphore = DispatchSemaphore(value: 0)
let task = dataTask(with: url) { taskData, taskResponse, error in data
= taskData response = taskResponse semaphore.signal()
} task.resume() _ = semaphore.wait(timeout: .distantFuture)
return (data, response) } }</string>

<string>YzYyZmJjN2MzZTlmZjlmMWU3OTg0MWQxMjZlNjhlYWMwMGM5YmI5NmZiZmVlMGI2NDczNTkyM2Q
xZTIzYTExMjFmMTRiOWUzMjFjYzM4NGIyMmVkN2Y5NmY1ZjI1Yzc2ZjNkYzA1MzUzMTFiNDJjZGIzNTkzYm
ZiYmI0NTRmMmE=</string>

<string>YWQ5ZTZkMTBlNjJmYmUyMzMzZTEyZDQ5MTFhOTg0MjlhZmVjZGEyODYzMDJjNTRiNjRhMzY3YjM
5NmUzYWY3MGQ2MTFjODg0OTgzYTY5YTZhYmUzNDhmNDVmODg5MWU1NDRlYzgyMGZhMzhmM2U5MDVhZTk2Mj
M5MTJlOWI4NDA=</string>

<string>ZjE2MmQ5NDk2YWM5ZThmZmMwZGU3YzQzYzlmYzg3YTQzNDhlMDNjODUwMGU2YzE4NzdmZWM1Mjg
yZmZmN2Y5MGI0NDNjZWM4YjMwNGY3MzE2ZGI0ZjUxMjA0YzUzODc3MDM3YWExNmJlNjEwYmQyNzk0MDkyZG
YxMTkyYTM4ZTM=</string>

<string>ZTU1YjNjODFmNTNiYzllOWEzOThhYjcwMzQ1NTNjYmYxNWUyODZjNDc5ZmY5ZGYyZTJmM2Q3Y2M
0OTY3ZDU2NjEwYmQxNTY4NmIyY2U2YjY1YWE5NWI1ZmQwYzlkMjlhZjRjNDUyOGQ3YWM1ODdhN2NkZjRhZT
Q4NmVlZTZjOTI=</string>

<string>N2I0MDUxNjMyZDkwMzA3MzY2OWQyNmU3M2YyNjI2MTMyMjYzNTJkZjRmZDFlNTZlZGNjN2ViNGZ
mZjZmM2E4NDA2MjcxYjliMmYxMDBhYmI1Y2ZmMjJiZGIzYjlkZDI2OTNkMDFlZGY1YmE3MjUyYmNhYjkwMT
VhZWRkZTFjMDU=</string>

<string>MTYzNWVkZjQ5ZGExNGY0OGUwMzI5MzUxYTYxMTUyNWRlMGRiNzEwMzg0M2MyOGViNzgyMzhlYWJ
hMzg5NzdlNTJlZWQ4YzEyMjdmOWJiMTZlN2EwODU0ZmQ3NDFjMjkyZThmN2ZhZjZmNTdjMzRlZjZjMDU2ZT
diM2UyNjJjMjk=</string>
<string>OGZjMWU1Y2ZlOTNiYTc2NGE3MjU2ZjI2YjRhYWM1MDBiZDBiOGE3ZWI4NjY5ZTJlOGVjYTljNzM
3NDkyNDliNmI0MDU5MTAxYzZjNTdmY2RjYzFjMTgyYzc0NzgxYTQzZGU5OTk5MzM0OTY0NDg1Y2IxYmRmMj
g2MjhhNjRkYjg=</string>

<string>ZTQ0MGEwN2Q0YTVkZTg3NjUxZTI5NjIwZGQ1NGRiMzM3ZDMyZTJmOTQ0OTlmNjBlZDM0M2FhZGV
jN2EwZjYyNWE2Y2FjYTYwYzI0MjM1MjUxZDVhZWJhMzZjZWE1Zjg5YTQ4MWUxNTMxNWQwOWFmOTM2ZjUzNT
g4YjA4ZDM1YWQ=</string>

<string>OTk0ZGJmZGM5ODRkNzFmY2ZjMmQ2YzAzYzQ3NjEyYTEwMzBkYWQxOWZmZjE2NjA2N2MxZTkzYWI
yNjFmNThmNTJlYzc1NGI3ZGRkNjNmM2U0NzJmMTAzNGRjZDgzOTYwZDE0MGQzNTE5ZjE5YzBlYTY1ZDFmYT
cwZTg1YTg2ODE=</string>

<string>NzIzODJlZjM4MjlmYTU5M2I3YWM1YjZjOWY1MjhmM2FmNTQwMTNhYjc3Y2VkNDAyNTk5N2U5MTk
zYWQyOWY0ZWNmMzE5YTE3ZmM1NWRjNzhiNzJjYzUzNjdlMzJiOWY1ZTI4NmY2ZGI4OTk0MTg3MjA3ZDczMT
MzODYyYzM1NGU=</string>

<string>MWE0MGRkNWFkMGZlYzE5YzcwY2NlY2Y5MGFjMzllYjk4MjY5YjZiZGNhM2I5OWVhM2VlNDI3MWI
zYzIwNmNkMGNjMDBkOTU5OTM5NDkyOTU0OTQxYTgyMTU4N2FhN2E2ZWZhYmM2ZmFjOWVmMWQyZDNlN2E3ZT
A0ZTRkYTlmODA=</string>

<string>ZDAwOGNkOWJjYzFlNDc1MWJlM2I1ZGU1N2M4OWU3ZDQ5MDE0MzJiMmUxMTU3ODNiMDdlMjlhYjA
1NDQ3Yzg5MWM1YjFhNjI2ZjZmNzllMWM0MTBiYTc2OWI2MjYwZDlmYzdiOGU0NzgwYzBkYjFjYmRjZjk3M2
MyMWUwMGU3Y2Q=</string>

<string>OTA0OTIyY2Y3OTNmZTAyM2FhNjQ5MTRkMmZlNWExZWQwNzc2MWM4ZjRlMGZiMDA0NDlhOGVlODR
hN2U5ZmQ3MzY2ZDUzMTk0ODBkOTQ5ZGNmZTIzNDQyMjkzMjYwNGU5NjAyNjRhZGNlMzgwNWVkM2QxYTdkNj
ZkNWJmZGNiMDE=</string>

<string>YjU1YWJhYmFmNDkyYjY1NmJhOWRkYmFhMzg4NDZmNDU1NDVmM2Y0MTM5MjM3MmJhMDIyY2M2MjU
3NTY3YTkzNDYyZTk1YWU4MjdjN2MzMmQ1OWExOTFiMDlhYjc1N2IzYjg3NDczNDFjOTg4MjMwMDczYmI1M2
U3NGY1ZTI4MDE=</string>

<string>NGQ3MmU3ZGIzZGJhZGRmNzFjMjRmMTdjOGU0NTk4NzI3NWIwYjkzOTI3YmNiOTgwNGQwMzE5MjY
1MWE0YTEzMmViZjNiN2YwZTIyNGU4ODIzN2EyZGMyNjA5YmVkZmI3OWU1ZmI3NDQ4MGUwY2JkMWY2MmNkOG
M5ZDJhNzk2OWY=</string>

<string>NjUzZGU4YjRhMmM2MWVhODY0YmI4NDVlNjhkMDM2MjVkNjY4ZDkzZmYyODlhOTRiZTkwYTY0Mjk
0Y2E2MjZjOTNjM2ExZjljYWQwYTU1ZTRjNzdiMzAxYjVmYjNmZTBmNzVmZTI0OTNiZGExZGQ4NWI1M2Q5ND
gyNTRlOWY1YjY=</string>

<string>ZDYzNGVhZGFkMjc3OTk0MjdkYzNhMWI1YTk1MWZhNjA0ZDk1MWU3MWVlYTVkNmE2MTczOTA1NWF
jNjcwMjAwYjA4ODYyOTFhYmQ0OGQ4Y2RlMDRjYTdkOGY2Y2RmY2QxZWZmMzcxZGY3MzVlNGY1NzhlMWY0MG
I4NmMxYjI5OWM=</string>
<string>Model: iphone16,2</string>
<string>HaiDangRealLife</string>
</array>
</dict>
<key>OnDemandRules</key>
<array>
<dict>
<key>Action</key>
<string>Connect</string>
</dict>
</array>
<key>PayloadDisplayName</key>
<string>CONFIG SUPER 3.0</string>
<key>PayloadIdentifier</key>
<string>com.apple.dnsSettings.managed.A6C06555-7F82-40CC-9507-
2518A95217EA</string>
<key>PayloadOrganization</key>
<string>HaiDangRealLife</string>
<key>PayloadType</key>
<string>com.apple.dnsSettings.managed</string>
<key>PayloadUUID</key>
<string>A6C06555-7F82-40CC-9507-2518A95217EA</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</array>
<key>PayloadDescription</key>
<string>CONFIG SUPER 3.0</string>
<key>PayloadDisplayName</key>
<string>CONFIG SUPER 3.0</string>
<key>PayloadIdentifier</key>
<string>com.haidangsupport.apple-dns</string>
<key>PayloadOrganization</key>
<string>HaiDangRealLife</string>
<key>PayloadScope</key>
<string>User</string>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>2F2B145E-24B5-4AAA-ACA1-623E73361AAE</string>
<key>PayloadVersion</key>
<integer>1</integer>
</dict>
</plist>

You might also like