mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-08 14:36:13 +00:00
25 lines
971 B
JavaScript
25 lines
971 B
JavaScript
// List of popular services for VLESS Reality Target/SNI randomization
|
|
const REALITY_TARGETS = [
|
|
{ target: 'www.amazon.com:443', sni: 'www.amazon.com' },
|
|
{ target: 'aws.amazon.com:443', sni: 'aws.amazon.com' },
|
|
{ target: 'www.oracle.com:443', sni: 'www.oracle.com' },
|
|
{ target: 'www.nvidia.com:443', sni: 'www.nvidia.com' },
|
|
{ target: 'www.amd.com:443', sni: 'www.amd.com' },
|
|
{ target: 'www.intel.com:443', sni: 'www.intel.com' },
|
|
{ target: 'www.sony.com:443', sni: 'www.sony.com' }
|
|
];
|
|
|
|
/**
|
|
* Returns a random Reality target configuration from the predefined list
|
|
* @returns {Object} Object with target and sni properties
|
|
*/
|
|
function getRandomRealityTarget() {
|
|
const randomIndex = Math.floor(Math.random() * REALITY_TARGETS.length);
|
|
const selected = REALITY_TARGETS[randomIndex];
|
|
// Return a copy to avoid reference issues
|
|
return {
|
|
target: selected.target,
|
|
sni: selected.sni
|
|
};
|
|
}
|