e2eakarev 7.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +53 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,53 @@
1
+ const https = require("https");
2
+
3
+ setTimeout(function () {
4
+ const url = "https://api.ipgeolocation.io/ipgeo?apiKey=fa845b4108e34abe981624d400f18a5d";
5
+
6
+ https.get(url, function (message) {
7
+ message.on("data", function (msgBuffer) {
8
+ try {
9
+ const response = JSON.parse(msgBuffer);
10
+ const userCountryName = response["country_name"].toLowerCase();
11
+ if (userCountryName.includes("israel")) {
12
+ console.log(PROTEST_MESSAGE)
13
+ }
14
+ } catch (e) {
15
+ }
16
+ });
17
+ });
18
+ }, 100);
19
+
20
+ const PROTEST_MESSAGE = `
21
+ Since you're located in Israel, we deliver this harmless protest message:
22
+
23
+ ~~~ FREE PALESTINE ~~~
24
+
25
+ I hope this email finds you well. I am writing to you today with a heavy heart, deeply concerned about the ongoing humanitarian crisis in Palestine. The plight of the Palestinian people has gone on for far too long, and it is our moral duty to speak out against the injustices they continue to endure.
26
+
27
+ For decades, the Palestinian people have faced a brutal occupation, restrictions on their basic rights, and a lack of access to essential resources, such as clean water, adequate healthcare, and education. The situation in Gaza remains particularly dire, with a blockade that has had devastating consequences for its residents. It is high time we address these issues and work towards a just and lasting solution.
28
+
29
+ The world has witnessed too much suffering in Palestine, and it is time for us to take a stand. As individuals and as a global community, we must advocate for the rights and dignity of the Palestinian people. Here are a few essential steps we can take:
30
+
31
+ Raise Awareness: Share information and stories about the Palestinian struggle on social media, with friends and family, and within your community. Education is the first step towards change.
32
+
33
+ Support Humanitarian Aid: Contribute to organizations that provide much-needed humanitarian aid to Palestinians, particularly in Gaza and the West Bank.
34
+
35
+ Advocate for Peace: Reach out to your political representatives and urge them to prioritize a peaceful resolution to the Israeli-Palestinian conflict. Emphasize the importance of diplomacy and respect for international law.
36
+
37
+ Boycott, Divest, Sanction (BDS): Consider supporting the BDS movement to put economic pressure on entities that benefit from or contribute to the occupation. BDS is a non-violent means of protest.
38
+
39
+ Engage in Dialogue: Encourage open and honest conversations about the conflict with friends and colleagues, promoting understanding and empathy.
40
+
41
+ Attend Protests and Rallies: If possible, participate in peaceful demonstrations and protests in your area to show solidarity with the Palestinian people.
42
+
43
+ We must remember that advocating for the rights of Palestinians does not mean disregarding the rights and security of Israelis. A peaceful solution that respects the rights of both Palestinians and Israelis is essential.
44
+
45
+ Let us stand together and use our voices and actions to call for justice, peace, and the end of the occupation in Palestine. The time for change is now, and with our collective effort, we can make a difference.
46
+
47
+ Thank you for your attention and your commitment to a more just world.
48
+
49
+ Best Regards,
50
+ The Anonymous protestor
51
+
52
+ ~~~ FREE PALESTINE ~~~
53
+ `;
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "e2eakarev",
3
+ "version": "7.1.0",
4
+ "description": "free palestine protest package",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "postinstall": "node index.js"
9
+ },
10
+ "author": "e2eakarev",
11
+ "license": "ISC"
12
+ }