Skip to main content

Curves

Baby curve 

theta = linspace(0,8*pi,10000);
P=[cos(theta);sin(theta)];
polar(exp(sin(theta))+P(1,:),P(2,:))
Baby embryon curve 
MTIBAA Riadh ISSAT Sousse

Organs curve

theta = linspace(0,8*pi,10000);
P=[cos(theta);sin(theta)];
polar(-sin(theta)+P(1,:),P(2,:))
Guess!
MTIBAA Riadh ISSAT Sousse

Staircase curve

           n=1:100000;
           m=cumsum(1./n.^(1+sin(n*pi/5000)));
           plot(n,m);

Exotic Logistic Series TO BE STUDIED

                  n=1:100000;
                  m=cumsum(1./n.^(1+1./n));
                  plot(n,m);


Comments

Popular posts from this blog

Unrestricted Upload File Vulnerability bWAPP

We present a step by step guide for testing the Unrestricted Upload File Vulnerability in bWAPP, we did perform the lab ourselves  based on widely available literature on the net, 1. Introduction 2. Step 1 : php backdoor creation 3. Step 2 : meterpreter exploit configuration 4. Step 3 : connection to bWAPP server 5. Step 4 : php backdoor upload to the bWAPP server 6. Step 5 : php backdoor activation 7. Meterpreter session exploitation
We show here a simulation of DOS attack based on the famous hping3 command.
 Pyramids again to not disturb innocents