import React from 'react'; import { Text, View } from 'react-native'; const SecurityTest = () => { // VULNERABILITY: Hardcoded sensitive AWS Key const AWS_SECRET = "AKIAIMNO7YBXQDWS7BAR"; const loginUser = (username, password) => { // VULNERABILITY: Logging sensitive information to console console.log("Attempting login for: " + username + " with password: " + password); }; return ( MobSF Test File ); }; export default SecurityTest;