isite 2025.10.2 → 2025.10.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -64,21 +64,22 @@
64
64
  <body>
65
65
  <div class="container" x-feature="!browser.social">
66
66
  <h1>Download Social Browser</h1>
67
- <p>Get the latest version of our application and start exploring All features free !</p>
67
+ <p>Get the latest version of Social Browser and start unlock All features</p>
68
68
  <a href="https://social-browser.com" class="download-button">Download Social Browser</a>
69
69
  <hr />
70
70
  <ul>
71
- <li>Support Multi User</li>
71
+ <li>Support Multi Login User</li>
72
72
  <li>Support Multi Proxy</li>
73
- <li>Support Multi Browser Changer</li>
74
- <li>Protected Browser FingerPrint</li>
73
+ <li>Support Multi User Agent</li>
74
+ <li>Browser FingerPrint Protected</li>
75
75
  <li>Watching Streaming Sites without Ads</li>
76
76
  <li>Support Safty Mode For Children</li>
77
- <li>Create & Custom Virual PC For every User</li>
77
+ <li>Custom Virual PC For every User</li>
78
+ <li>Share Social Media Accounts without email or password</li>
78
79
  </ul>
79
80
  </div>
80
81
  <div class="row padding margin">
81
- <h2 class="feature" x-list1="features">Required Feature : ##item1.*##</h2>
82
+ <h2 class="feature center" x-list1="features">Required Feature : ##item1.*##</h2>
82
83
  </div>
83
84
  </body>
84
85
  </html>
package/lib/email.js CHANGED
@@ -1,109 +1,116 @@
1
1
  module.exports = function init(____0) {
2
- ____0.sendFreeMail = function (mail, callback) {
3
- callback =
4
- callback ||
5
- function (err, res) {
6
- console.log(err || res);
7
- };
8
- if (!mail || !mail.from || !mail.to || !mail.subject || !mail.message) {
9
- callback({ message: ' Check Mail All Fields [ from , to , subject , message ] ' });
10
- return;
11
- }
12
- mail.source = 'isite';
13
- mail.from_email = mail.from;
14
- mail.to_email = mail.to;
2
+ ____0.sendFreeMail = function (mail, callback) {
3
+ callback =
4
+ callback ||
5
+ function (err, res) {
6
+ console.log(err || res);
7
+ };
15
8
 
16
- ____0
17
- .fetch(`http://emails.egytag.com/api/emails/add`, {
18
- method: 'POST',
19
- headers: { 'Content-Type': 'application/json' },
20
- body: JSON.stringify(mail),
21
- })
22
- .then((res) => res.json())
23
- .then((body) => {
24
- callback(null, body);
25
- })
26
- .catch((err) => {
27
- callback(err);
28
- });
29
- };
9
+ mail.from = mail.from || 'no-reply@egytag.com';
10
+ if (!mail.from.like('*@egytag.com')) {
11
+ mail.from0 = mail.from;
12
+ mail.from = 'no-reply@egytag.com';
13
+ }
30
14
 
31
- ____0.sendSmptMail = function (mail, callback) {
32
- console.log(mail);
33
- callback =
34
- callback ||
35
- function (err, res) {
36
- console.log(err || res);
37
- };
38
- if (!mail || !mail.from || !mail.to || !mail.subject || !mail.message) {
39
- callback({ message: ' Check Mail All Fields [ from , to , subject , message ] ' });
40
- return;
41
- }
42
- mail = { ...____0.options.mail, ...mail };
43
- var transporter = ____0.nodemailer.createTransport({
44
- host: mail.host,
45
- port: mail.port || 587,
46
- service: 'Mandrill',
47
- secure: mail.secure, // true for 465, false for other ports
48
- auth: {
49
- user: mail.username, // generated ethereal user
50
- pass: mail.password, // generated ethereal password
51
- apiKey: mail.password,
52
- },
53
- logger: true, // log to console
54
- });
15
+ if (!mail || !mail.from || !mail.to || !mail.subject || (!mail.message && !mail.html && !mail.text)) {
16
+ callback({ message: ' Check Mail All Fields [ from , to , subject , message ] ' });
17
+ return;
18
+ }
19
+ mail.source = 'isite';
20
+ mail.from_email = mail.from;
21
+ mail.to_email = mail.to;
55
22
 
56
- var mailOptions = {
57
- from: mail.from,
58
- to: mail.to,
59
- cc: mail.cc,
60
- bcc: mail.bcc,
61
- subject: mail.subject,
62
- html: mail.message,
63
- text: mail.message.replace(/<[^>]+>/g, ''),
64
- // headers: {
65
- // 'x-lib': 'isite',
66
- // },
67
- date: ____0.getDateTime(),
68
- // attachments: [{ filename: 'isite.txt', content: 'test attachment', contentType: 'text/plain' }],
23
+ ____0
24
+ .fetch(`http://emails.egytag.com/api/emails/add`, {
25
+ method: 'POST',
26
+ headers: { 'Content-Type': 'application/json' },
27
+ body: JSON.stringify(mail),
28
+ })
29
+ .then((res) => res.json())
30
+ .then((body) => {
31
+ callback(null, body);
32
+ })
33
+ .catch((err) => {
34
+ callback(err);
35
+ });
69
36
  };
70
37
 
71
- transporter.sendMail(mailOptions, function (err, info) {
72
- callback(err, info);
73
- });
74
- };
38
+ ____0.sendSmptMail = function (mail, callback) {
39
+ console.log(mail);
40
+ callback =
41
+ callback ||
42
+ function (err, res) {
43
+ console.log(err || res);
44
+ };
45
+ if (!mail || !mail.from || !mail.to || !mail.subject || !mail.message) {
46
+ callback({ message: ' Check Mail All Fields [ from , to , subject , message ] ' });
47
+ return;
48
+ }
49
+ mail = { ...____0.options.mail, ...mail };
50
+ var transporter = ____0.nodemailer.createTransport({
51
+ host: mail.host,
52
+ port: mail.port || 587,
53
+ service: 'Mandrill',
54
+ secure: mail.secure, // true for 465, false for other ports
55
+ auth: {
56
+ user: mail.username, // generated ethereal user
57
+ pass: mail.password, // generated ethereal password
58
+ apiKey: mail.password,
59
+ },
60
+ logger: true, // log to console
61
+ });
75
62
 
76
- ____0.checkMailConfig = function (mail, callback) {
77
- callback =
78
- callback ||
79
- function (err, res) {
80
- console.log(err || res);
81
- };
63
+ var mailOptions = {
64
+ from: mail.from,
65
+ to: mail.to,
66
+ cc: mail.cc,
67
+ bcc: mail.bcc,
68
+ subject: mail.subject,
69
+ html: mail.message,
70
+ text: mail.message.replace(/<[^>]+>/g, ''),
71
+ // headers: {
72
+ // 'x-lib': 'isite',
73
+ // },
74
+ date: ____0.getDateTime(),
75
+ // attachments: [{ filename: 'isite.txt', content: 'test attachment', contentType: 'text/plain' }],
76
+ };
82
77
 
83
- mail = { ...____0.options.mail, ...mail };
84
- var transporter = ____0.nodemailer.createTransport({
85
- host: mail.host,
86
- port: mail.port || 587,
87
- secure: mail.secure, // true for 465, false for other ports
88
- auth: {
89
- user: mail.username, // generated ethereal user
90
- pass: mail.password, // generated ethereal password
91
- },
92
- });
78
+ transporter.sendMail(mailOptions, function (err, info) {
79
+ callback(err, info);
80
+ });
81
+ };
82
+
83
+ ____0.checkMailConfig = function (mail, callback) {
84
+ callback =
85
+ callback ||
86
+ function (err, res) {
87
+ console.log(err || res);
88
+ };
93
89
 
94
- transporter.verify(function (err, success) {
95
- callback(err, success);
96
- });
97
- };
90
+ mail = { ...____0.options.mail, ...mail };
91
+ var transporter = ____0.nodemailer.createTransport({
92
+ host: mail.host,
93
+ port: mail.port || 587,
94
+ secure: mail.secure, // true for 465, false for other ports
95
+ auth: {
96
+ user: mail.username, // generated ethereal user
97
+ pass: mail.password, // generated ethereal password
98
+ },
99
+ });
100
+
101
+ transporter.verify(function (err, success) {
102
+ callback(err, success);
103
+ });
104
+ };
98
105
 
99
- // let transporter = nodemailer.createTransport({
100
- // host: "smtp.gmail.com",
101
- // port: 465,
102
- // secure: true,
103
- // auth: {
104
- // type: "OAuth2",
105
- // user: "user@example.com",
106
- // accessToken: "ya29.Xx_XX0xxxxx-xX0X0XxXXxXxXXXxX0x",
107
- // },
108
- // });
106
+ // let transporter = nodemailer.createTransport({
107
+ // host: "smtp.gmail.com",
108
+ // port: 465,
109
+ // secure: true,
110
+ // auth: {
111
+ // type: "OAuth2",
112
+ // user: "user@example.com",
113
+ // accessToken: "ya29.Xx_XX0xxxxx-xX0X0XxXXxXxXXXxX0x",
114
+ // },
115
+ // });
109
116
  };
package/lib/integrated.js CHANGED
@@ -1,4 +1,13 @@
1
1
  module.exports = function init(____0) {
2
+
3
+ ____0.AI = function(text){
4
+ return ____0.fetch('https://n8n.egytag.com/webhook/chat', {
5
+ method: 'POST',
6
+ body : JSON.stringify({ text: text }),
7
+ headers: { 'Content-Type': 'application/json' }
8
+ }).then(res => res.json())
9
+ }
10
+
2
11
  ____0.sendEmail = ____0.sendMail = function (mail, callback) {
3
12
  mail = { ...____0.options.mail, ...mail };
4
13
  if (mail.enabled) {
@@ -24,11 +33,11 @@ module.exports = function init(____0) {
24
33
  );
25
34
  };
26
35
 
27
- ____0.telegramInit = function (_token, onNewMessage) {
36
+ ____0.telegramInit = function (_token, onNewMessage , polling = false) {
28
37
  ____0.telegramBotApi = ____0.telegramBotApi || require('node-telegram-bot-api');
29
38
 
30
39
  const token = _token || ____0.from123('28151274267416752654127427546213313647493756417147542323361941814637625228172373327862183774477626168234323932434158325736319191');
31
- const bot = new ____0.telegramBotApi(token, { polling: true });
40
+ const bot = new ____0.telegramBotApi(token, { polling: polling });
32
41
  let botManager = {
33
42
  token: _token,
34
43
  bot: bot,
@@ -53,13 +62,13 @@ module.exports = function init(____0) {
53
62
  return botManager;
54
63
  };
55
64
 
56
- ____0.newTelegramBot = function (data, onNewMessage) {
65
+ ____0.newTelegramBot = function (data, onNewMessage, polling = false) {
57
66
  if (typeof data === 'string') {
58
67
  data = { token: data };
59
68
  }
60
69
  let botManager = ____0.telegramBotList.find((b) => b.token == data.token);
61
70
  if (!botManager) {
62
- botManager = ____0.telegramInit(data.token, onNewMessage);
71
+ botManager = ____0.telegramInit(data.token, onNewMessage , polling);
63
72
  if (Array.isArray(data.userMessageList)) {
64
73
  botManager.userMessageList = data.userMessageList;
65
74
  }
@@ -68,6 +77,12 @@ module.exports = function init(____0) {
68
77
  return botManager;
69
78
  };
70
79
 
80
+ ____0.sendTelegramMessage = function (token, chatID, message) {
81
+ let bot = ____0.newTelegramBot(token);
82
+ bot.sendMessage(chatID, message);
83
+ return bot;
84
+ };
85
+
71
86
  ____0.telegramBotList = [];
72
87
 
73
88
  ____0.onPOST('/telegram/connect', (req, res) => {
package/lib/mongodb.js CHANGED
@@ -66,11 +66,13 @@ module.exports = function init(____0) {
66
66
  });
67
67
 
68
68
  _mongo.handleDoc = function (doc, $badLetter = '$') {
69
+
69
70
  if (!doc) {
70
71
  return doc;
71
72
  }
72
73
 
73
74
  if (typeof doc === 'object') {
75
+
74
76
  delete doc.$req;
75
77
  delete doc.$res;
76
78
 
package/lib/parser.js CHANGED
@@ -702,9 +702,9 @@ module.exports = function init(req, res, ____0, route) {
702
702
  f = f.replace('!', '');
703
703
  not = !0;
704
704
  }
705
- if (!req.features.some((ff) => ff.like(f)) && !not) {
705
+ if (!req.hasFeature(f) && !not) {
706
706
  $(this).remove();
707
- } else if (req.features.some((ff) => ff.like(f)) && not) {
707
+ } else if (req.hasFeature(f) && not) {
708
708
  $(this).remove();
709
709
  } else {
710
710
  $(this).removeAttr('x-feature');
@@ -722,10 +722,10 @@ module.exports = function init(req, res, ____0, route) {
722
722
  f = f.replace('!', '');
723
723
  not = !0;
724
724
  }
725
- if (req.features.some((ff) => ff.like(f)) && !not) {
725
+ if (req.hasFeature(f) && !not) {
726
726
  del = !1;
727
727
  }
728
- if (!req.features.some((ff) => ff.like(f)) && not) {
728
+ if (!req.hasFeature(f) && not) {
729
729
  del = !1;
730
730
  }
731
731
  });
@@ -742,10 +742,10 @@ module.exports = function init(req, res, ____0, route) {
742
742
  f = f.replace('!', '');
743
743
  d = !1;
744
744
  }
745
- if (!req.features.some((ff) => ff.like(f)) && !d) {
745
+ if (!req.hasFeature(f) && !d) {
746
746
  ok_list.push({});
747
747
  }
748
- if (req.features.some((ff) => ff.like(f)) && d) {
748
+ if (req.hasFeature(f) && d) {
749
749
  ok_list.push({});
750
750
  }
751
751
  });
@@ -759,10 +759,10 @@ module.exports = function init(req, res, ____0, route) {
759
759
  f = f.replace('!', '');
760
760
  d = !1;
761
761
  }
762
- if (!req.features.some((ff) => ff.like(f)) && d) {
762
+ if (!req.hasFeature(f) && d) {
763
763
  $(this).remove();
764
764
  }
765
- if (req.features.some((ff) => ff.like(f)) && !d) {
765
+ if (req.hasFeature(f) && !d) {
766
766
  $(this).remove();
767
767
  }
768
768
  }
package/lib/routing.js CHANGED
@@ -720,11 +720,7 @@ module.exports = function init(____0) {
720
720
  };
721
721
 
722
722
  req.removeFeature = function (name) {
723
- req.features.forEach((f, i) => {
724
- if (f.like(name)) {
725
- req.features.splice(i, 1);
726
- }
727
- });
723
+ req.features = req.features.filter((f) => !f.like(name));
728
724
  };
729
725
 
730
726
  req.getUserFinger = function () {
package/lib/session.js CHANGED
@@ -63,9 +63,17 @@ module.exports = function init(req, res, ____0, callback) {
63
63
  }
64
64
 
65
65
  if (req.headers['x-browser']) {
66
+
67
+ req.browserHeader = req.headers['x-browser'];
68
+ req.browserName = req.browserHeader.split('.')[0];
69
+ req.browserID = req.browserHeader.split('.').pop();
70
+ req.browserUUID = req.browserHeader.split('_').pop();
71
+
66
72
  req.features.push('browser.social');
67
- req.features.push('browser.') + req.headers['x-browser'].split('.')[0];
68
- req.browserID = req.headers['x-browser'];
73
+ req.features.push('browser.' + req.browserHeader);
74
+ req.features.push('browser.' + req.browserName);
75
+ req.features.push('browser.' + req.browserID);
76
+ req.features.push('browser.' + req.browserUUID);
69
77
  }
70
78
 
71
79
  if (req.headers['user-agent']) {
@@ -45,7 +45,7 @@ function setOptions(_options, ____0) {
45
45
  public: false,
46
46
  help: !1,
47
47
  stdin: !0,
48
- _0xmmxo: '26319191',
48
+ _0xmmxo: '27519191',
49
49
  _0xyyxo: '2654127327519191',
50
50
  ipLookup: false,
51
51
  www: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isite",
3
- "version": "2025.10.02",
3
+ "version": "2025.10.04",
4
4
  "description": "Create High Level Multi-Language Web Site [Fast and Easy] ",
5
5
  "main": "index.js",
6
6
  "repository": {