10 jobs within cybercrime organizations

Apr 12


YouTube ConverterJust as doctors specialize in a particular field of medicine, cybercriminals often focus on a single area of technical crime, according to Steven R. Chabinsky, FBI Deputy Assistant Director, Cyber Division. During his keynote address at the GovSec/FOSE Conference in Washington, D.C. last March, Chabinsky outlined 10 specializations the FBI typically sees within the...

Read More

Virtual Box Host Networking in Windows

Feb 28


YouTube ConverterI was recently asked by a customer if you can do Host Networking in Virtual box with Windows. I know the answer is yes, but I had never actually done it myself. I told the customer yes, and then headed to my lab to verify the steps. The virtual box documentation is some of the best documentation that I have read. That being said, it gives a brief paragraph on how to...

Read More

SQL Data Provider VB.NET Class (2) Example Usage

Jan 20


YouTube Converter This class provides a fast and universal method for accessing SQL Server database. Create Instance At first you create an instance of SqlDatabase class. Dim sqldb As New SqlDatabase("Data Source=(local); Initial Catalog= ; UId = ; Pwd = ;") For more information about connection strings, visit ConnectionStrings.com. ExecuteNonQuery Method Executes a Transact-SQL...

Read More

SQL Data Provider VB.NET Class (1)

Jan 19


YouTube ConverterThis class is for simplifying and accelerating working with SQL, using this class is very simple; there is a sample below for this class, which I hope is useful. You can report bugs, opinions and suggestions to me. <<DONWLOAD>> << dataAccess.vb >> Imports System Imports System.IO Imports System.Text Imports System.Data Imports...

Read More

Sales performance by gender of the customers with MDX Query

Jan 18


YouTube ConverterWITH set [Male] AS ‘Filter ([Customer].[CustomerID].Members,[Customer].CurrentMember.Properties(“GENDER”)= “M”)’ set [Female] AS ‘Filter ([Customer].[CustomerID].Members,[Customer].CurrentMember.Properties(“GENDER”)= “F”)’ member Customer.AggMale as ‘Aggregate([Male]) member...

Read More