Simple steps to get Facebook profile data. We can save it as document for future use and understand the time spend in Facebook for different activities. Step 1. Login into your Facebook account and go to [highlight]settings-> General account Settings.[/highlight] Step 2. Instantly you can see the [highlight]Download a copy of your Information[/highlight] data link, now…
Category: Web Tips
web tips,ticks
Download the list of Indian government blocked sites
The Indian government has blocked more than 857 sites contains vulgarity inside of the nation. It was on track late on Friday from India’s Department of Telecommunications and was in action today. Click to download the Restricted Sites List: free Download(india_blocked_site_list.pdf) Evidently, attempting to get to sites now brings about either a message saying it…
Get youtube video time duration
We can use a PHP function to get the YouTube video duration. Before that, you should have Google API Key 1.Create Google API and get API key from Goog’s official website https://console.developers.google.com One important Note. At the time of creating API, leave the below option blank ” Accept requests from these HTTP referrers (web sites) (Optional)”….
Major security issues facing by the websites
Vulnerabilities Severity 1) Cross Site Scripting HIGH 2) File Upload Vulnerability HIGH 3) Directory Listing Vulnerability HIGH 4) Unencrypted Login Pages HIGH 5) Session Hijacking HIGH 6) Cross Site Request Forgery(csrf) HIGH 7) Weak Captcha Implementation MEDIUM 8) Cross Frame Scripting(css) MEDIUM 9)Internal Error Handling MEDIUM 10)Cookies are not marked as HTTPOnly LOW Recommendations…
Convert Images To Black And White using CSS-grayscale filter
The CSS grayscale filter We can change color image to a black and white with CSS. We need to implement a filter as a class. img.blackndwhite{ filter: grayscale(100%); } Chrome and Safari still implement CSS filters need web kit declaration. img.blackndwhite { -webkit-filter: grayscale(100%); filter: grayscale(100%); } —————————-More grayscale filter code examples——————– img.blackndwhite { filter: url(“data:image/svg+xml;utf8,#grayscale”);…