RE: how can i perform dns rebinding using evil twin in local level ?! 04-28-2019, 06:31 PM
#5
(04-28-2019, 05:15 PM)mooooon Wrote:(04-27-2019, 08:41 PM)darkninja1980 Wrote: please edit your code it hard to read it.
No need to edit it .... it works as it's .
I posted in these sites too
https://forum.antichat.ru/threads/470085/
http://www.kali-linux.fr/forum/index.php...237.0.html
what I mean is like this for an example.
Code:
using System;
namespace SampleApp {
public delegate string MyDel(string str);
class EventProgram {
event MyDel MyEvent;
public EventProgram() {
this.MyEvent += new MyDel(this.WelcomeUser);
}
public string WelcomeUser(string username) {
return "Welcome " + username;
}
static void Main(string[] args) {
EventProgram obj1 = new EventProgram();
string result = obj1.MyEvent("Tutorials Point");
Console.WriteLine(result);
}
}
}
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#
coding skills that I know is Java, JavaScript and C#