-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom_mappings.php
More file actions
33 lines (27 loc) · 1.1 KB
/
custom_mappings.php
File metadata and controls
33 lines (27 loc) · 1.1 KB
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
<?php
// BiDe (Bitrix Deobfuscator) - Custom Mappings
// GitHub: https://github.com/SirAndrewGotham/BiDe
// MANUALLY EDIT THIS FILE to add your own mappings
// This file is NEVER overwritten by the automated system
// Format: 'obfuscated_name' => 'clean_value'
declare(strict_types=1);
return [
'metadata' => [
'version' => '1.0',
'description' => 'User-maintained custom mappings for BiDe (Bitrix Deobfuscator)',
'github' => 'https://github.com/SirAndrewGotham/BiDe',
'last_modified' => '2024-01-15', // User should update this
'records' => 3 // User should update this count
],
'mappings' => [
// ADD YOUR CUSTOM MAPPINGS BELOW THIS LINE
// Format: 'obfuscated_variable' => 'clean_value'
// Example custom mappings:
'_custom_var_1' => '$database',
'_custom_var_2' => '$config',
'____custom_123' => 'password',
// You can also override automated mappings here
// '_1334784963' => '$custom_string', // This would override the automated mapping
// ADD YOUR CUSTOM MAPPINGS ABOVE THIS LINE
]
];