ADVERTISEMENT
970x220

Villafuerte believes new DICT chief can 'do wonders' vs cyberfraud

Published Apr 4, 2025 01:56 am

At A Glance

  • Camarines Sur 2nd district Rep LRay Villafuerte believes newly-installed Department of Information and Communications Technology (DICT) Secretary Henry Aguda can "do wonders" in the fight against online scams.

LRayFoto1.jpgCamarines Sur 2nd district Rep. LRay Villafuerte (Rep. Villafuerte's office)

 

 

 

 

 

 

 

 

 

Camarines Sur 2nd district Rep LRay Villafuerte believes newly-installed Department of Information and Communications Technology (DICT) Secretary Henry Aguda can "do wonders" in the fight against online scams.

In a statement Thursday, April 3, Villafuerte said that Aguda "can put to use his extensive experience and expertise in digital transformation in the corporate world to possibly do wonders for the government’s drive to check surging cyberfraud".

 

And with most cyberattacks targeting smart phones, the veteran congressman said the new DICT head honcho would do well to work with Congress, pertinent government agencies, private telecommunications companies (telcos) and other stakeholders in revisiting the Subscriber Identity Module (SIM) Registration Law amid the continued surge in text and online fraud that this new regulation was supposed to overcome.

 

Villafuerte was a lead author of Republic Act (RA) No. 11934, or the “SIM Registration Act", which President Marcos signed in 2022 to put an end to text and online fraud.

 

The former Camarines Sur governor is also the majority leader of the bicameral Commission on Appointments (CA), which screens major presidential appointees.

 

“For the government to get RA 11934 right this time, Secretary Henry needs to give priority attention to a revisit and overhaul of this seemingly ineffectual regulation by working with its CICC (Cybercrime Investigation and Coordinating Center) along with the Congress, NTC (National Telecommunications Commission), NBI (National Bureau of Investigation), PNP (Philippine National Police) and other concerned institutions with an eye to a far more synergetic and effective multisectoral approach to combating text and online scams,” Villafuerte said.  

 

He made this call following a report from mobile security firm Appdome that the Philippines faces financial losses of $1.5 billion or P86 billion this year alone from cyberattacks targeting celfones, which are often the go-to devices of many Filipinos when they make digital payments and other online transactions.

 

Appdome co-creator and CEO Tom Tovar was quoted in a media interview as saying that among the digital threats worldwide are mobile “Trojan” attacks, which look like “seemingly legitimate” smart phone applications like expense trackers or photo and video editors.

 

“But inside that application there is another code, malware that is being used either to monitor your behavior, harvest your personal information, or worse, perform account takeovers,” said Tovar. “They (hackers) take your username and password and send them away to a server and somebody sells your username and password on the dark web.”

 

Once sensitive information like e-wallet details have been obtained from scam victims, Tovar said that hackers can take over these digital accounts and get the money of the victims.

 

Appdome’s Mobile Consumer Survey in 2024 showed that 54.7 percent of Filipino consumers use mobile applications more than the web, and that 61.6 percent of the respondents claimed  they use e-wallets, mainly for their payments.

 

Related Tags

Department of Information and Communications Technology online scams Henry Aguda lray villafuerte
ADVERTISEMENT
300x250
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0 72px 0 12px; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } li:empty { display: none; } .hidden { display: none; }
function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.